@@ -1038,31 +1038,31 @@ class CmpInst : public Instruction {
1038
1038
// / the two operands. Insert the instruction into a BasicBlock right before
1039
1039
// / the specified instruction.
1040
1040
// / Create a CmpInst
1041
- static CmpInst *Create (OtherOps Op, Predicate predicate , Value *S1, Value *S2,
1041
+ static CmpInst *Create (OtherOps Op, Predicate Pred , Value *S1, Value *S2,
1042
1042
const Twine &Name, BasicBlock::iterator InsertBefore);
1043
1043
1044
1044
// / Construct a compare instruction, given the opcode, the predicate and
1045
1045
// / the two operands. Optionally (if InstBefore is specified) insert the
1046
1046
// / instruction into a BasicBlock right before the specified instruction.
1047
1047
// / The specified Instruction is allowed to be a dereferenced end iterator.
1048
1048
// / Create a CmpInst
1049
- static CmpInst *Create (OtherOps Op,
1050
- Predicate predicate, Value *S1,
1051
- Value *S2, const Twine &Name = " " ,
1049
+ static CmpInst *Create (OtherOps Op, Predicate Pred, Value *S1, Value *S2,
1050
+ const Twine &Name = " " ,
1052
1051
Instruction *InsertBefore = nullptr );
1053
1052
1054
1053
// / Construct a compare instruction, given the opcode, the predicate and the
1055
1054
// / two operands. Also automatically insert this instruction to the end of
1056
1055
// / the BasicBlock specified.
1057
1056
// / Create a CmpInst
1058
- static CmpInst *Create (OtherOps Op, Predicate predicate , Value *S1,
1059
- Value *S2, const Twine &Name, BasicBlock *InsertAtEnd);
1057
+ static CmpInst *Create (OtherOps Op, Predicate Pred , Value *S1, Value *S2 ,
1058
+ const Twine &Name, BasicBlock *InsertAtEnd);
1060
1059
1061
1060
// / Construct a compare instruction, given the opcode, the predicate,
1062
1061
// / the two operands and the instruction to copy the flags from. Optionally
1063
1062
// / (if InstBefore is specified) insert the instruction into a BasicBlock
1064
1063
// / right before the specified instruction. The specified Instruction is
1065
- // / allowed to be a dereferenced end iterator. Create a CmpInst
1064
+ // / allowed to be a dereferenced end iterator.
1065
+ // / Create a CmpInst
1066
1066
static CmpInst *CreateWithCopiedFlags (OtherOps Op, Predicate Pred, Value *S1,
1067
1067
Value *S2,
1068
1068
const Instruction *FlagsSource,
0 commit comments