From 4f68528de4d3f9746bb93ad3b58e86a7ae353491 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 31 Oct 2001 02:27:26 +0000 Subject: Fix bug when inlining a method that refers to a global variable git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1056 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/InlineSimple.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Transforms/IPO/InlineSimple.cpp') diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp index ef92b2d07c..bc320ee330 100644 --- a/lib/Transforms/IPO/InlineSimple.cpp +++ b/lib/Transforms/IPO/InlineSimple.cpp @@ -40,8 +40,8 @@ static inline void RemapInstruction(Instruction *I, for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) { const Value *Op = I->getOperand(op); Value *V = ValueMap[Op]; - if (!V && (isa(Op) || isa(Op))) - continue; // Methods and constants don't get relocated + if (!V && (isa(Op) || isa(Op))) + continue; // Globals and constants don't get relocated if (!V) { cerr << "Val = " << endl << Op << "Addr = " << (void*)Op << endl; -- cgit v1.2.3