diff options
| author | David Greene <greened@obbligato.org> | 2011-07-29 22:43:06 +0000 |
|---|---|---|
| committer | David Greene <greened@obbligato.org> | 2011-07-29 22:43:06 +0000 |
| commit | af8ee2cdeeb2ed35fdf0db8f7c06254c5d333ac4 (patch) | |
| tree | 44b1e44fca997d90227f276acddbc885ef01724b /llvm/utils/TableGen/CodeGenTarget.cpp | |
| parent | 5b442374e94a066aa0d9e8c606e612c990842a7d (diff) | |
| download | bcm5719-llvm-af8ee2cdeeb2ed35fdf0db8f7c06254c5d333ac4.tar.gz bcm5719-llvm-af8ee2cdeeb2ed35fdf0db8f7c06254c5d333ac4.zip | |
Unconstify Inits
Remove const qualifiers from Init references, per Chris' request.
llvm-svn: 136531
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
| -rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index ceaa82fa05b..929791c3182 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -402,7 +402,7 @@ CodeGenIntrinsic::CodeGenIntrinsic(Record *R) { // Parse the list of return types. std::vector<MVT::SimpleValueType> OverloadedVTs; - const ListInit *TypeList = R->getValueAsListInit("RetTypes"); + ListInit *TypeList = R->getValueAsListInit("RetTypes"); for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) { Record *TyEl = TypeList->getElementAsRecord(i); assert(TyEl->isSubClassOf("LLVMType") && "Expected a type!"); @@ -470,7 +470,7 @@ CodeGenIntrinsic::CodeGenIntrinsic(Record *R) { } // Parse the intrinsic properties. - const ListInit *PropList = R->getValueAsListInit("Properties"); + ListInit *PropList = R->getValueAsListInit("Properties"); for (unsigned i = 0, e = PropList->getSize(); i != e; ++i) { Record *Property = PropList->getElementAsRecord(i); assert(Property->isSubClassOf("IntrinsicProperty") && |

