Fix PR#226: When emitting padding, always emit it as bytes. Bytes can be
[oota-llvm.git] / lib / Target / SparcV9 / SparcV9AsmPrinter.cpp
index 5bb2ee62e8d8f239159c740070c49c69dfac85a7..863ffd7007a39d6f8d5a4fc93653c01d8789386e 100644 (file)
@@ -184,14 +184,11 @@ namespace {
     }
 
     void PrintZeroBytesToPad(int numBytes) {
-      for (/* no init */; numBytes >= 8; numBytes -= 8)
-        printSingleConstantValue(Constant::getNullValue(Type::ULongTy));
-
-      if (numBytes >= 4) {
-        printSingleConstantValue(Constant::getNullValue(Type::UIntTy));
-        numBytes -= 4;
-      }
-
+      //
+      // Always use single unsigned bytes for padding.  We don't know upon
+      // what data size the beginning address is aligned, so using anything
+      // other than a byte may cause alignment errors in the assembler.
+      //
       while (numBytes--)
         printSingleConstantValue(Constant::getNullValue(Type::UByteTy));
     }