summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-09-23 19:08:04 +0000
committerJim Grosbach <grosbach@apple.com>2010-09-23 19:08:04 +0000
commit3d50a3e237b08ff648488f182ce72620b7e94ebe (patch)
tree29d2d1f5b6a4576096ae24995544e83c19536146 /llvm/lib/Target/ARM/ARMAsmPrinter.cpp
parent789847ddbbcd683bfc427babed0fd8baf726aaa3 (diff)
downloadbcm5719-llvm-3d50a3e237b08ff648488f182ce72620b7e94ebe.tar.gz
bcm5719-llvm-3d50a3e237b08ff648488f182ce72620b7e94ebe.zip
explicit 'unsigned long' on constant value. Hopefully make bots happier.
llvm-svn: 114686
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r--llvm/lib/Target/ARM/ARMAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
index 8dfc5691c09..72d34b92b36 100644
--- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/llvm/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;
OpenPOWER on IntegriCloud