diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-20 18:32:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-20 18:32:41 +0000 |
commit | 1b87c42c82883e37099c777d08474f89834010dd (patch) | |
tree | d0fb2d3924218ef4cbe9ce1221c62f1d03b37ec8 /lib/CodeGen/MachineInstr.cpp | |
parent | 719c2fc97f7dbf2fdc3743f2324a33c02cbb8b0c (diff) |
This field no longer exists
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index db4cbd3c47..973e3ec1e6 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -130,8 +130,6 @@ MachineInstr::SetMachineOperandConst(unsigned i, MachineOperand::MachineOperandType opTy, int intValue) { assert(i < getNumOperands()); // must be explicit op - assert(TargetInstrDescriptors[Opcode].resultPos != (int) i && - "immed. constant cannot be defined"); operands[i].opType = opTy; operands[i].contents.value = NULL; |