diff options
author | Chris Lattner <sabre@nondot.org> | 2006-09-25 22:38:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-09-25 22:38:36 +0000 |
commit | 384299ef45840acf7c43125dc935237b333e339a (patch) | |
tree | b7f52aa7b7cb4ee127232d1594009b9a81716ff3 | |
parent | 14fbcbfa2b7146569c588c451825206906c3b55a (diff) |
order this properly to avoid warnings in TargetAsmInfo.cpp. Add a comment
in a format that matches every other ivars in this class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30603 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index d3941ad61d..82132c0185 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -108,7 +108,6 @@ namespace llvm { 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 @@ namespace llvm { /// 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\",@progbits". |