diff options
author | Dan Gohman <gohman@apple.com> | 2007-07-13 20:16:50 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-07-13 20:16:50 +0000 |
commit | 3bf6e183d5f116adc8adbf6853da5f479f22139c (patch) | |
tree | f5f1c5573e77b9d8e4a28adcff4cdd51a512ec53 /utils/TableGen/CodeGenTarget.cpp | |
parent | a346615d11f0a560c6e7280c1e614301d9f93051 (diff) |
Eliminate an unused parameter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39828 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | utils/TableGen/CodeGenTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/CodeGenTarget.cpp b/utils/TableGen/CodeGenTarget.cpp index 71fc824ead..2aabe51c51 100644 --- a/utils/TableGen/CodeGenTarget.cpp +++ b/utils/TableGen/CodeGenTarget.cpp @@ -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); |