Changes in directory llvm/lib/VMCore:

AsmWriter.cpp updated: 1.182 -> 1.183
---
Log message:

fix printing the alignment directive


---
Diffs of the changes:  (+1 -1)

 AsmWriter.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/VMCore/AsmWriter.cpp
diff -u llvm/lib/VMCore/AsmWriter.cpp:1.182 llvm/lib/VMCore/AsmWriter.cpp:1.183
--- llvm/lib/VMCore/AsmWriter.cpp:1.182 Sat Nov  5 03:21:28 2005
+++ llvm/lib/VMCore/AsmWriter.cpp       Sat Nov  5 15:20:34 2005
@@ -1173,7 +1173,7 @@
       writeOperand(AI->getArraySize(), true);
     }
     if (AI->getAlignment()) {
-      Out << ", " << AI->getAlignment();
+      Out << ", align " << AI->getAlignment();
     }
   } else if (isa<CastInst>(I)) {
     if (Operand) writeOperand(Operand, true);   // Work with broken code



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to