[llvm-commits] CVS: llvm/utils/TableGen/Record.h

Chris Lattner lattner at cs.uiuc.edu
Fri Aug 19 10:59:00 PDT 2005



Changes in directory llvm/utils/TableGen:

Record.h updated: 1.50 -> 1.51
---
Log message:

add a setName method to record


---
Diffs of the changes:  (+1 -1)

 Record.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/utils/TableGen/Record.h
diff -u llvm/utils/TableGen/Record.h:1.50 llvm/utils/TableGen/Record.h:1.51
--- llvm/utils/TableGen/Record.h:1.50	Fri Aug 19 12:58:11 2005
+++ llvm/utils/TableGen/Record.h	Fri Aug 19 12:58:49 2005
@@ -888,7 +888,7 @@
 }
 
 class Record {
-  const std::string Name;
+  std::string Name;
   std::vector<std::string> TemplateArgs;
   std::vector<RecordVal> Values;
   std::vector<Record*> SuperClasses;






More information about the llvm-commits mailing list