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:
Owen Anderson 2007-07-20 08:19:20 +00:00
parent 521a20207c
commit c9399be5e5

View File

@ -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)