Single characters should be printed out as chars, not strings.
authorMisha Brukman <brukman+llvm@gmail.com>
Tue, 8 Mar 2005 00:26:08 +0000 (00:26 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Tue, 8 Mar 2005 00:26:08 +0000 (00:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20515 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp

index 683e42bdbc8e75851f12e80425ef81f4a9fc9d30..57de4e5f770aa5474d4476f0c41e54c0fd496ec6 100644 (file)
@@ -1683,7 +1683,7 @@ void CWriter::visitLoadInst(LoadInst &I) {
   writeOperand(I.getOperand(0));
 
   if (I.isVolatile())
-    Out << ")";
+    Out << ')';
 }
 
 void CWriter::visitStoreInst(StoreInst &I) {
@@ -1694,7 +1694,7 @@ void CWriter::visitStoreInst(StoreInst &I) {
     Out << " volatile*)";
   }
   writeOperand(I.getPointerOperand());
-  if (I.isVolatile()) Out << ")";
+  if (I.isVolatile()) Out << ')';
   Out << " = ";
   writeOperand(I.getOperand(0));
 }
index 683e42bdbc8e75851f12e80425ef81f4a9fc9d30..57de4e5f770aa5474d4476f0c41e54c0fd496ec6 100644 (file)
@@ -1683,7 +1683,7 @@ void CWriter::visitLoadInst(LoadInst &I) {
   writeOperand(I.getOperand(0));
 
   if (I.isVolatile())
-    Out << ")";
+    Out << ')';
 }
 
 void CWriter::visitStoreInst(StoreInst &I) {
@@ -1694,7 +1694,7 @@ void CWriter::visitStoreInst(StoreInst &I) {
     Out << " volatile*)";
   }
   writeOperand(I.getPointerOperand());
-  if (I.isVolatile()) Out << ")";
+  if (I.isVolatile()) Out << ')';
   Out << " = ";
   writeOperand(I.getOperand(0));
 }