mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-16 23:19:37 +00:00
Fix a bug where we were marking GEP expressions with the wrong opcode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40085 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
521a20207c
commit
c9399be5e5
@ -418,7 +418,7 @@ Expression ValueTable::create_expression(GetElementPtrInst* G) {
|
||||
e.secondVN = 0;
|
||||
e.thirdVN = 0;
|
||||
e.type = G->getType();
|
||||
e.opcode = Expression::SELECT;
|
||||
e.opcode = Expression::GEP;
|
||||
|
||||
for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
|
||||
I != E; ++I)
|
||||
|
Loading…
x
Reference in New Issue
Block a user