[llvm-commits] CVS: llvm/lib/Target/Target.td

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 4 00:02:11 PDT 2003


Changes in directory llvm/lib/Target:

Target.td updated: 1.11 -> 1.12

---
Log message:

Transition to using let instead of set


---
Diffs of the changes:

Index: llvm/lib/Target/Target.td
diff -u llvm/lib/Target/Target.td:1.11 llvm/lib/Target/Target.td:1.12
--- llvm/lib/Target/Target.td:1.11	Sun Aug  3 17:12:37 2003
+++ llvm/lib/Target/Target.td	Sun Aug  3 23:58:12 2003
@@ -42,7 +42,7 @@
 // "name" of the register, you can use this to specify a custom name instead.
 //
 class NamedReg<string n> : Register {
-  set Name = n;
+  let Name = n;
 }
 
 // RegisterAliases - You should define instances of this class to indicate which





More information about the llvm-commits mailing list