mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
[NVPTX] Do not emit .hidden or .protected directives as they are not allowed by PTX.
llvm-svn: 257961
This commit is contained in:
parent
e6a5617700
commit
b31d5d18b5
@ -41,6 +41,9 @@ NVPTXMCAsmInfo::NVPTXMCAsmInfo(const Triple &TheTriple) {
|
|||||||
// PTX does not allow .align on functions.
|
// PTX does not allow .align on functions.
|
||||||
HasFunctionAlignment = false;
|
HasFunctionAlignment = false;
|
||||||
HasDotTypeDotSizeDirective = false;
|
HasDotTypeDotSizeDirective = false;
|
||||||
|
// PTX does not allow .hidden or .protected
|
||||||
|
HiddenDeclarationVisibilityAttr = HiddenVisibilityAttr = MCSA_Invalid;
|
||||||
|
ProtectedVisibilityAttr = MCSA_Invalid;
|
||||||
|
|
||||||
Data8bitsDirective = " .b8 ";
|
Data8bitsDirective = " .b8 ";
|
||||||
Data16bitsDirective = " .b16 ";
|
Data16bitsDirective = " .b16 ";
|
||||||
|
16
test/CodeGen/NVPTX/global-visibility.ll
Normal file
16
test/CodeGen/NVPTX/global-visibility.ll
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
|
||||||
|
|
||||||
|
; PTX does not support .hidden or .protected.
|
||||||
|
; Make sure we do not emit them.
|
||||||
|
|
||||||
|
define hidden void @f_hidden() {
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
; CHECK-NOT: .hidden
|
||||||
|
; CHECK: .visible .func f_hidden
|
||||||
|
|
||||||
|
define protected void @f_protected() {
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
; CHECK-NOT: .protected
|
||||||
|
; CHECK: .visible .func f_protected
|
Loading…
Reference in New Issue
Block a user