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