[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h

Chris Lattner sabre at nondot.org
Mon Sep 25 15:38:50 PDT 2006



Changes in directory llvm/include/llvm/Target:

TargetAsmInfo.h updated: 1.3 -> 1.4
---
Log message:

order this properly to avoid warnings in TargetAsmInfo.cpp.  Add a comment
in a format that matches every other ivars in this class.



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

 TargetAsmInfo.h |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletion(-)


Index: llvm/include/llvm/Target/TargetAsmInfo.h
diff -u llvm/include/llvm/Target/TargetAsmInfo.h:1.3 llvm/include/llvm/Target/TargetAsmInfo.h:1.4
--- llvm/include/llvm/Target/TargetAsmInfo.h:1.3	Sun Sep 24 14:43:29 2006
+++ llvm/include/llvm/Target/TargetAsmInfo.h	Mon Sep 25 17:38:36 2006
@@ -108,7 +108,6 @@
     const char *Data16bitsDirective;      // Defaults to "\t.short\t"
     const char *Data32bitsDirective;      // Defaults to "\t.long\t"
     const char *Data64bitsDirective;      // Defaults to "\t.quad\t"
-    const char *JumpTableDirective;       // if used, the jump table reloc flag
 
     //===--- Alignment Information ----------------------------------------===//
 
@@ -156,6 +155,10 @@
     /// is PIC.
     const char *JumpTableTextSection;     // Defaults to "\t.text\n"
     
+    /// JumpTableDirective - if non-null, the directive to emit before a jump
+    /// table.
+    const char *JumpTableDirective;
+
     /// StaticCtorsSection - This is the directive that is emitted to switch to
     /// a section to emit the static constructor list.
     /// Defaults to "\t.section .ctors,\"aw\", at progbits".






More information about the llvm-commits mailing list