mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 10:04:33 +00:00
Fix bug: InstCombine/2003-09-09-VolatileLoadElim.ll
Loads "mayWriteToMemory" if they are volatile git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8422 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ffd340c6b6
commit
76b5f88c57
@ -159,6 +159,8 @@ public:
|
||||
|
||||
virtual Instruction *clone() const { return new LoadInst(*this); }
|
||||
|
||||
virtual bool mayWriteToMemory() const { return isVolatile(); }
|
||||
|
||||
Value *getPointerOperand() { return getOperand(0); }
|
||||
const Value *getPointerOperand() const { return getOperand(0); }
|
||||
static unsigned getPointerOperandIndex() { return 0U; }
|
||||
|
Loading…
Reference in New Issue
Block a user