2014-01-15 03:35:09 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -o - %s | FileCheck %s
|
2010-06-15 07:15:08 +08:00
|
|
|
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK-LABEL: define {{.*}}void @_Z2f0Pc
|
2010-06-15 07:15:08 +08:00
|
|
|
void f0(char *p) { }
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK-LABEL: define {{.*}}void @_Z2f0PU3AS1c
|
2010-06-15 07:15:08 +08:00
|
|
|
void f0(char __attribute__((address_space(1))) *p) { }
|
2011-12-04 02:24:43 +08:00
|
|
|
|
|
|
|
struct OpaqueType;
|
|
|
|
typedef OpaqueType __attribute__((address_space(100))) * OpaqueTypePtr;
|
|
|
|
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK-LABEL: define {{.*}}void @_Z2f0PU5AS10010OpaqueType
|
2011-12-04 02:24:43 +08:00
|
|
|
void f0(OpaqueTypePtr) { }
|