aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/Record.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-08-19 17:58:49 +0000
committerChris Lattner <sabre@nondot.org>2005-08-19 17:58:49 +0000
commit22c6202bb31b9e5f454552d93dbb42819d87cb93 (patch)
tree993e6b0aa45da65d59ecab94a56e3e41b26f9f35 /utils/TableGen/Record.h
parent936dd9274aca2f2ccd0e10dafe83a22767475fa6 (diff)
downloadexternal_llvm-22c6202bb31b9e5f454552d93dbb42819d87cb93.zip
external_llvm-22c6202bb31b9e5f454552d93dbb42819d87cb93.tar.gz
external_llvm-22c6202bb31b9e5f454552d93dbb42819d87cb93.tar.bz2
add a setName method to record
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/Record.h')
-rw-r--r--utils/TableGen/Record.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h
index ce69d67..4ca0890 100644
--- a/utils/TableGen/Record.h
+++ b/utils/TableGen/Record.h
@@ -888,7 +888,7 @@ inline std::ostream &operator<<(std::ostream &OS, const RecordVal &RV) {
}
class Record {
- const std::string Name;
+ std::string Name;
std::vector<std::string> TemplateArgs;
std::vector<RecordVal> Values;
std::vector<Record*> SuperClasses;