Fix a bug where we were marking GEP expressions with the wrong opcode.

llvm-svn: 40085
This commit is contained in:
Owen Anderson 2007-07-20 08:19:20 +00:00
parent edb926bfe3
commit 5bd6c3f2c4
1 changed files with 1 additions and 1 deletions

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)