explicit 'unsigned long' on constant value. Hopefully make bots happier.
authorJim Grosbach <grosbach@apple.com>
Thu, 23 Sep 2010 19:08:04 +0000 (19:08 +0000)
committerJim Grosbach <grosbach@apple.com>
Thu, 23 Sep 2010 19:08:04 +0000 (19:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114686 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMAsmPrinter.cpp

index 8dfc5691c0983985dc7dd8ab747f22bf2687af24..72d34b92b36cefc9dac54c66785508eee1a1b1d6 100644 (file)
@@ -1729,7 +1729,7 @@ void ARMAsmPrinter::printInstructionThroughMCStreamer(const MachineInstr *MI) {
     // FIXME: Remove this special case when they do.
     if (!Subtarget->isTargetDarwin()) {
       //.long 0xe7ffdefe ${:comment} trap
-      uint32_t Val = 0xe7ffdefe;
+      uint32_t Val = 0xe7ffdefeUL;
       OutStreamer.AddComment("trap");
       OutStreamer.EmitIntValue(Val, 4);
       return;