Eliminate an unused parameter.
authorDan Gohman <gohman@apple.com>
Fri, 13 Jul 2007 20:16:50 +0000 (20:16 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 13 Jul 2007 20:16:50 +0000 (20:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39828 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/CodeGenTarget.cpp
utils/TableGen/CodeGenTarget.h

index 71fc824eadfdb519f9e3e430946d7c38d46af0b2..2aabe51c51c94808ef61b9f600acf093d03ee207 100644 (file)
@@ -30,7 +30,7 @@ AsmWriterNum("asmwriternum", cl::init(0),
 
 /// getValueType - Return the MCV::ValueType that the specified TableGen record
 /// corresponds to.
-MVT::ValueType llvm::getValueType(Record *Rec, const CodeGenTarget *CGT) {
+MVT::ValueType llvm::getValueType(Record *Rec) {
   return (MVT::ValueType)Rec->getValueAsInt("Value");
 }
 
@@ -623,7 +623,7 @@ CodeGenIntrinsic::CodeGenIntrinsic(Record *R, CodeGenTarget *CGT) {
     Record *TyEl = TypeList->getElementAsRecord(i);
     assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!");
     ArgTypes.push_back(TyEl->getValueAsString("TypeVal"));
-    MVT::ValueType VT = getValueType(TyEl->getValueAsDef("VT"), CGT);
+    MVT::ValueType VT = getValueType(TyEl->getValueAsDef("VT"));
     isOverloaded |= VT == MVT::iAny;
     ArgVTs.push_back(VT);
     ArgTypeDefs.push_back(TyEl);
index 7151b7e4bc6714ef476262015e0b2178fb179480..7f5f0a7fad72ececb45047f7bff2bd1a4ea9fb54 100644 (file)
@@ -35,7 +35,7 @@ enum SDNP { SDNPCommutative, SDNPAssociative, SDNPHasChain,
 
 /// getValueType - Return the MVT::ValueType that the specified TableGen record
 /// corresponds to.
-MVT::ValueType getValueType(Record *Rec, const CodeGenTarget *CGT = 0);
+MVT::ValueType getValueType(Record *Rec);
 
 std::string getName(MVT::ValueType T);
 std::string getEnumName(MVT::ValueType T);