Handle ARM machine constantpool entries.
[oota-llvm.git] / lib / Target / ARM / ARMConstantPoolValue.cpp
index 002ebf109f7835626baa06d6cae77b957e8dca16..c95a6e6b470d345dbca66283f7e55847df248305 100644 (file)
@@ -93,10 +93,8 @@ void ARMConstantPoolValue::print(raw_ostream &O) const {
   else if (isStub()) O << "$stub";
   if (Modifier) O << "(" << Modifier << ")";
   if (PCAdjust != 0) {
-    O << "-(LPIC" << LabelId << "+"
-      << (unsigned)PCAdjust;
-    if (AddCurrentAddress)
-      O << "-.";
+    O << "-(LPC" << LabelId << "+" << (unsigned)PCAdjust;
+    if (AddCurrentAddress) O << "-.";
     O << ")";
   }
 }