diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-10-13 19:39:16 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-10-13 19:39:16 +0000 |
| commit | 69ce8674b5edeb6a1c8290cb7eefcd44ab28f3a2 (patch) | |
| tree | 298416246806b96f35aa0f2499bd3d891b9683b0 /llvm/lib/Target/Sparc/PreSelection.cpp | |
| parent | b0f38789dafe7d713f5a4b4f34fb8c20eeb6e7b8 (diff) | |
| download | bcm5719-llvm-69ce8674b5edeb6a1c8290cb7eefcd44ab28f3a2.tar.gz bcm5719-llvm-69ce8674b5edeb6a1c8290cb7eefcd44ab28f3a2.zip | |
- Rename Instruction::First*Op to *OpsBegin, and Num*Ops to *OpsEnd to
reflect the fact that it's a range being defined.
llvm-svn: 4147
Diffstat (limited to 'llvm/lib/Target/Sparc/PreSelection.cpp')
| -rw-r--r-- | llvm/lib/Target/Sparc/PreSelection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Sparc/PreSelection.cpp b/llvm/lib/Target/Sparc/PreSelection.cpp index 916938dabec..56c34edbb7f 100644 --- a/llvm/lib/Target/Sparc/PreSelection.cpp +++ b/llvm/lib/Target/Sparc/PreSelection.cpp @@ -214,8 +214,8 @@ static Instruction* DecomposeConstantExpr(ConstantExpr* CE, "constantGEP", &insertBefore); default: // must be a binary operator - assert(CE->getOpcode() >= Instruction::FirstBinaryOp && - CE->getOpcode() < Instruction::NumBinaryOps && + assert(CE->getOpcode() >= Instruction::BinaryOpsBegin && + CE->getOpcode() < Instruction::BinaryOpsEnd && "Unrecognized opcode in ConstantExpr"); getArg1 = CE->getOperand(0); if (ConstantExpr* CEarg = dyn_cast<ConstantExpr>(getArg1)) |

