diff options
author | David Greene <greened@obbligato.org> | 2011-10-19 13:04:31 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2011-10-19 13:04:31 +0000 |
commit | 5d5d88cc1a82aefd590e65c91b88eac387667a1f (patch) | |
tree | 60ed8f631d71208765ccf5ce426b63fce3810258 /llvm/lib/TableGen/TGParser.h | |
parent | 2affd67b513ea7b674c9aa77b7d9e57a37685420 (diff) | |
download | bcm5719-llvm-5d5d88cc1a82aefd590e65c91b88eac387667a1f.tar.gz bcm5719-llvm-5d5d88cc1a82aefd590e65c91b88eac387667a1f.zip |
Process Defm Prefix as Init
Parse and process a defm prefix as an Init expression. This allows
paste operations to create defm prefixes.
llvm-svn: 142523
Diffstat (limited to 'llvm/lib/TableGen/TGParser.h')
-rw-r--r-- | llvm/lib/TableGen/TGParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/TableGen/TGParser.h b/llvm/lib/TableGen/TGParser.h index 7295febb9fd..54cd99a8a4a 100644 --- a/llvm/lib/TableGen/TGParser.h +++ b/llvm/lib/TableGen/TGParser.h @@ -101,7 +101,7 @@ private: // Parser methods. bool ParseMultiClass(); Record *InstantiateMulticlassDef(MultiClass &MC, Record *DefProto, - const std::string &DefmPrefix, + Init *DefmPrefix, SMLoc DefmPrefixLoc); bool ResolveMulticlassDefArgs(MultiClass &MC, Record *DefProto, |