hmm, should probably change addImm() to take 64-bit arguments one day anyway.
authorDuraid Madina <duraid@octopus.com.au>
Mon, 11 Apr 2005 07:16:39 +0000 (07:16 +0000)
committerDuraid Madina <duraid@octopus.com.au>
Mon, 11 Apr 2005 07:16:39 +0000 (07:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21224 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/IA64/IA64ISelPattern.cpp

index 996f722cbe7cd1e7e1e29d178f1c839a99a1fe07..05d08e18abb0c295833da2547dca4042cb4ec711 100644 (file)
@@ -667,7 +667,7 @@ unsigned ISel::SelectExpr(SDOperand N) {
 
     /* otherwise, our immediate is big, so we use movl */
     uint64_t Imm = immediate;
-    BuildMI(BB, IA64::MOVLIMM64, 1, Result).addU64Imm(Imm);
+    BuildMI(BB, IA64::MOVLIMM64, 1, Result).addImm64(Imm);
     return Result;
   }