From: Jim Grosbach Date: Thu, 23 Sep 2010 19:08:04 +0000 (+0000) Subject: explicit 'unsigned long' on constant value. Hopefully make bots happier. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5c49b6960967be165cdf5877832772da048e9690;p=oota-llvm.git explicit 'unsigned long' on constant value. Hopefully make bots happier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114686 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp index 8dfc5691c09..72d34b92b36 100644 --- a/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/ARMAsmPrinter.cpp @@ -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;