diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-05 16:36:26 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-05 16:36:26 +0000 |
commit | c6f69e94fa46f585b59bb9d7ace3224b0e638c95 (patch) | |
tree | f3872090404ff088929d722ca3bbe750fec2dc49 /lib/Transforms/Utils/CloneFunction.cpp | |
parent | e41a115e6a5c8c45122772557f04aa1917174c11 (diff) |
Remove an unnnecessary LLVMContext argument in
ConstantFoldLoadThroughGEPConstantExpr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83311 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/CloneFunction.cpp')
-rw-r--r-- | lib/Transforms/Utils/CloneFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/CloneFunction.cpp b/lib/Transforms/Utils/CloneFunction.cpp index f042bc9f22..30130fa0a1 100644 --- a/lib/Transforms/Utils/CloneFunction.cpp +++ b/lib/Transforms/Utils/CloneFunction.cpp @@ -346,7 +346,7 @@ ConstantFoldMappedInstruction(const Instruction *I) { if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0))) if (GV->isConstant() && GV->hasDefinitiveInitializer()) return ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), - CE, Context); + CE); return ConstantFoldInstOperands(I->getOpcode(), I->getType(), &Ops[0], Ops.size(), Context, TD); |