[llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelPattern.cpp
Duraid Madina
duraid at octopus.com.au
Mon Apr 11 00:16:50 PDT 2005
Changes in directory llvm/lib/Target/IA64:
IA64ISelPattern.cpp updated: 1.16 -> 1.17
---
Log message:
hmm, should probably change addImm() to take 64-bit arguments one day anyway.
---
Diffs of the changes: (+1 -1)
IA64ISelPattern.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Target/IA64/IA64ISelPattern.cpp
diff -u llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.16 llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.17
--- llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.16 Mon Apr 11 00:55:56 2005
+++ llvm/lib/Target/IA64/IA64ISelPattern.cpp Mon Apr 11 02:16:39 2005
@@ -667,7 +667,7 @@
/* 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;
}
More information about the llvm-commits
mailing list