Renamed get.*Operator to create seeing that it would have to be qualified
authorChris Lattner <sabre@nondot.org>
Mon, 25 Jun 2001 07:31:31 +0000 (07:31 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 25 Jun 2001 07:31:31 +0000 (07:31 +0000)
with the classname anyways.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AsmParser/llvmAsmParser.cpp
lib/AsmParser/llvmAsmParser.y
lib/Bytecode/Reader/InstructionReader.cpp

index d52d7a553d23e27f9403cff857239e8628ce2d42..98417c442641b0a764e2bd59aa1cb98edfbe228d 100644 (file)
@@ -1879,7 +1879,7 @@ case 114:
 case 115:
 #line 868 "llvmAsmParser.y"
 {
-    yyval.InstVal = BinaryOperator::getBinaryOperator(yyvsp[-4].BinaryOpVal, getVal(yyvsp[-3].TypeVal, yyvsp[-2].ValIDVal), getVal(yyvsp[-3].TypeVal, yyvsp[0].ValIDVal));
+    yyval.InstVal = BinaryOperator::create(yyvsp[-4].BinaryOpVal, getVal(yyvsp[-3].TypeVal, yyvsp[-2].ValIDVal), getVal(yyvsp[-3].TypeVal, yyvsp[0].ValIDVal));
     if (yyval.InstVal == 0)
       ThrowException("binary operator returned null!");
   ;
@@ -1887,7 +1887,7 @@ case 115:
 case 116:
 #line 873 "llvmAsmParser.y"
 {
-    yyval.InstVal = UnaryOperator::getUnaryOperator(yyvsp[-2].UnaryOpVal, getVal(yyvsp[-1].TypeVal, yyvsp[0].ValIDVal));
+    yyval.InstVal = UnaryOperator::create(yyvsp[-2].UnaryOpVal, getVal(yyvsp[-1].TypeVal, yyvsp[0].ValIDVal));
     if (yyval.InstVal == 0)
       ThrowException("unary operator returned null!");
   ;
index f178d731a540f5e7cccb51441b094b55eed75c22..3f71274c8efb94ff95d7f1f322d845728027d11b 100644 (file)
@@ -866,12 +866,12 @@ ValueRefList : Types ValueRef {    // Used for call statements...
 ValueRefListE : ValueRefList | /*empty*/ { $$ = 0; }
 
 InstVal : BinaryOps Types ValueRef ',' ValueRef {
-    $$ = BinaryOperator::getBinaryOperator($1, getVal($2, $3), getVal($2, $5));
+    $$ = BinaryOperator::create($1, getVal($2, $3), getVal($2, $5));
     if ($$ == 0)
       ThrowException("binary operator returned null!");
   }
   | UnaryOps Types ValueRef {
-    $$ = UnaryOperator::getUnaryOperator($1, getVal($2, $3));
+    $$ = UnaryOperator::create($1, getVal($2, $3));
     if ($$ == 0)
       ThrowException("unary operator returned null!");
   } 
index bbf0a5d5a1bcb415a3660354eb5be17bdd86cefc..fd919c92a262abddc3ede3f842f43d16592979ea 100644 (file)
@@ -93,13 +93,12 @@ bool BytecodeParser::ParseInstruction(const uchar *&Buf, const uchar *EndBuf,
 
   if (Raw.Opcode >= Instruction::FirstUnaryOp && 
       Raw.Opcode <  Instruction::NumUnaryOps  && Raw.NumOperands == 1) {
-    Res = UnaryOperator::getUnaryOperator(Raw.Opcode,getValue(Raw.Ty,Raw.Arg1));
+    Res = UnaryOperator::create(Raw.Opcode,getValue(Raw.Ty,Raw.Arg1));
     return false;
   } else if (Raw.Opcode >= Instruction::FirstBinaryOp &&
             Raw.Opcode <  Instruction::NumBinaryOps  && Raw.NumOperands == 2) {
-    Res = BinaryOperator::getBinaryOperator(Raw.Opcode, 
-                                           getValue(Raw.Ty, Raw.Arg1),
-                                           getValue(Raw.Ty, Raw.Arg2));
+    Res = BinaryOperator::create(Raw.Opcode, getValue(Raw.Ty, Raw.Arg1),
+                                            getValue(Raw.Ty, Raw.Arg2));
     return false;
   } else if (Raw.Opcode == Instruction::PHINode) {
     PHINode *PN = new PHINode(Raw.Ty);