aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-07 07:24:32 +0000
committerChris Lattner <sabre@nondot.org>2007-01-07 07:24:32 +0000
commit52a457c7e23ef08ed31e8aba8c9a673d8aaac59b (patch)
tree20319163b2b6ae29e97d8eec10c9e94adda0729c
parentfebe5f1b3c43c217e4c32155cda9bcc9e1e50e11 (diff)
relax type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32983 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86TargetAsmInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86TargetAsmInfo.cpp b/lib/Target/X86/X86TargetAsmInfo.cpp
index bfd5858a07..8c212b6224 100644
--- a/lib/Target/X86/X86TargetAsmInfo.cpp
+++ b/lib/Target/X86/X86TargetAsmInfo.cpp
@@ -185,7 +185,7 @@ bool X86TargetAsmInfo::LowerToBSwap(CallInst *CI) const {
// Okay, we can do this xform, do so now.
Module *M = CI->getParent()->getParent()->getParent();
- Function *Int = M->getOrInsertFunction(IntName, Ty, Ty, (Type*)0);
+ Constant *Int = M->getOrInsertFunction(IntName, Ty, Ty, (Type*)0);
Value *Op = CI->getOperand(1);
Op = new CallInst(Int, Op, CI->getName(), CI);