diff options
author | Robert Lytton <robert@xmos.com> | 2013-10-11 10:27:00 +0000 |
---|---|---|
committer | Robert Lytton <robert@xmos.com> | 2013-10-11 10:27:00 +0000 |
commit | 4315b2b50413da09c3ac9bce07c77842f02ac929 (patch) | |
tree | cd6351a538b19b57170da9627e33b7f2e584b17f /lib/Target/XCore | |
parent | fb312f9f5a9f8cd8be1dbeaf011768e186eb8f98 (diff) | |
download | external_llvm-4315b2b50413da09c3ac9bce07c77842f02ac929.zip external_llvm-4315b2b50413da09c3ac9bce07c77842f02ac929.tar.gz external_llvm-4315b2b50413da09c3ac9bce07c77842f02ac929.tar.bz2 |
XCore target does not emit '.hidden' or '.protected' attributes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore')
-rw-r--r-- | lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp b/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp index 235028c..19b97ef 100644 --- a/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp +++ b/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp @@ -25,6 +25,10 @@ XCoreMCAsmInfo::XCoreMCAsmInfo(StringRef TT) { AscizDirective = ".asciiz"; WeakRefDirective = "\t.weak\t"; + HiddenVisibilityAttr = MCSA_Invalid; + HiddenDeclarationVisibilityAttr = MCSA_Invalid; + ProtectedVisibilityAttr = MCSA_Invalid; + // Debug HasLEB128 = true; } |