Douglas Gregor | 1726d15 | 2010-06-14 23:15:08 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s |
| 2 | |
Stephen Lin | 4362261 | 2013-08-15 06:47:53 +0000 | [diff] [blame] | 3 | // CHECK-LABEL: define void @_Z2f0Pc |
Douglas Gregor | 1726d15 | 2010-06-14 23:15:08 +0000 | [diff] [blame] | 4 | void f0(char *p) { } |
Stephen Lin | 4362261 | 2013-08-15 06:47:53 +0000 | [diff] [blame] | 5 | // CHECK-LABEL: define void @_Z2f0PU3AS1c |
Douglas Gregor | 1726d15 | 2010-06-14 23:15:08 +0000 | [diff] [blame] | 6 | void f0(char __attribute__((address_space(1))) *p) { } |
Douglas Gregor | fb9968d | 2011-12-03 18:24:43 +0000 | [diff] [blame] | 7 | |
| 8 | struct OpaqueType; |
| 9 | typedef OpaqueType __attribute__((address_space(100))) * OpaqueTypePtr; |
| 10 | |
Stephen Lin | 4362261 | 2013-08-15 06:47:53 +0000 | [diff] [blame] | 11 | // CHECK-LABEL: define void @_Z2f0PU5AS10010OpaqueType |
Douglas Gregor | fb9968d | 2011-12-03 18:24:43 +0000 | [diff] [blame] | 12 | void f0(OpaqueTypePtr) { } |