OSDN Git Service

output alignment value in hex so that we get:
authorChris Lattner <sabre@nondot.org>
Thu, 3 Sep 2009 04:01:10 +0000 (04:01 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 3 Sep 2009 04:01:10 +0000 (04:01 +0000)
  .align 3, 0x90
instead of,
  .align 3, 144

suggested by eric.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80875 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCAsmStreamer.cpp

index d976028..58d18fe 100644 (file)
@@ -225,7 +225,8 @@ void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
       OS << Log2_32(ByteAlignment);
 
     if (Value || MaxBytesToEmit) {
-      OS << ", " << truncateToSize(Value, ValueSize);
+      OS << ", 0x";
+      OS.write_hex(truncateToSize(Value, ValueSize));
 
       if (MaxBytesToEmit) 
         OS << ", " << MaxBytesToEmit;