diff options
| author | Dale Johannesen <dalej@apple.com> | 2007-11-20 23:25:17 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2007-11-20 23:25:17 +0000 |
| commit | f265bec4b0d33ecd281916228224947a2c6b1e2a (patch) | |
| tree | d59eface738439c342f81b76e0e431ccdc2e7aa3 /llvm | |
| parent | 763e110a9fe7b5bb6c7d176aa2871ca8a634f20f (diff) | |
| download | bcm5719-llvm-f265bec4b0d33ecd281916228224947a2c6b1e2a.tar.gz bcm5719-llvm-f265bec4b0d33ecd281916228224947a2c6b1e2a.zip | |
File missing from previous patch.
llvm-svn: 44259
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Target/TargetAsmInfo.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/include/llvm/Target/TargetAsmInfo.h b/llvm/include/llvm/Target/TargetAsmInfo.h index 3ec55ee4a3d..19a20f366d3 100644 --- a/llvm/include/llvm/Target/TargetAsmInfo.h +++ b/llvm/include/llvm/Target/TargetAsmInfo.h @@ -260,6 +260,10 @@ namespace llvm { /// global as being a weak undefined symbol. const char *WeakRefDirective; // Defaults to null. + /// WeakDefDirective - This directive, if non-null, is used to declare a + /// global as being a weak defined symbol. + const char *WeakDefDirective; // Defaults to null. + /// HiddenDirective - This directive, if non-null, is used to declare a /// global or function as having hidden visibility. const char *HiddenDirective; // Defaults to "\t.hidden\t". @@ -300,6 +304,11 @@ namespace llvm { /// bool DwarfRequiresFrameSection; // Defaults to true. + /// GlobalEHDirective - This is the directive used to make exception frame + /// tables globally visible. + /// + const char *GlobalEHDirective; // Defaults to NULL. + /// DwarfSectionOffsetDirective - Special section offset directive. const char* DwarfSectionOffsetDirective; // Defaults to NULL @@ -543,6 +552,9 @@ namespace llvm { const char *getWeakRefDirective() const { return WeakRefDirective; } + const char *getWeakDefDirective() const { + return WeakDefDirective; + } const char *getHiddenDirective() const { return HiddenDirective; } @@ -570,6 +582,9 @@ namespace llvm { bool doesDwarfRequireFrameSection() const { return DwarfRequiresFrameSection; } + const char *getGlobalEHDirective() const { + return GlobalEHDirective; + } const char *getDwarfSectionOffsetDirective() const { return DwarfSectionOffsetDirective; } |

