1 ; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
3 ; PTX does not support .hidden or .protected.
4 ; Make sure we do not emit them.
6 define hidden void @f_hidden() {
10 ; CHECK: .visible .func f_hidden
12 define protected void @f_protected() {
15 ; CHECK-NOT: .protected
16 ; CHECK: .visible .func f_protected