From 7d90a2738e889efc5ff6e64c015c3b5cf5324aff Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 27 Feb 2004 18:09:25 +0000 Subject: [PATCH] setcond instructions don't have aliasing implications. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11919 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/GlobalOpt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index 8f6cbbdfda6..c30ec5f47c1 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp @@ -20,7 +20,7 @@ #include "llvm/Transforms/IPO.h" #include "llvm/Constants.h" -#include "llvm/iMemory.h" +#include "llvm/Instructions.h" #include "llvm/Module.h" #include "llvm/Pass.h" #include "Support/Debug.h" @@ -57,7 +57,7 @@ static bool isStoredThrough(Value *V) { } else if (Instruction *I = dyn_cast(*UI)) { if (I->getOpcode() == Instruction::GetElementPtr) { if (isStoredThrough(I)) return true; - } else if (!isa(*UI)) + } else if (!isa(*UI) && !isa(*UI)) return true; // Any other non-load instruction might store! } else { // Otherwise must be a global or some other user. -- 2.11.0