• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
2 
3 // CHECK-LABEL: define {{.*}}void @_Z2f0Pc
f0(char * p)4 void f0(char *p) { }
5 // CHECK-LABEL: define {{.*}}void @_Z2f0PU3AS1c
f0(char * p)6 void f0(char __attribute__((address_space(1))) *p) { }
7 
8 struct OpaqueType;
9 typedef OpaqueType __attribute__((address_space(100))) * OpaqueTypePtr;
10 
11 // CHECK-LABEL: define {{.*}}void @_Z2f0PU5AS10010OpaqueType
f0(OpaqueTypePtr)12 void f0(OpaqueTypePtr) { }
13 
14 // CHECK-LABEL: define {{.*}}void @_Z2f1PU3AS1Kc
f1(char const * p)15 void f1(char __attribute__((address_space(1))) const *p) {}