1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm < %s | grep "internal addrspace(1) global i32 1" 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc typedef int a __attribute__((address_space(1))); 4*f4a2713aSLionel Sambuc a* x = &(a){1}; 5*f4a2713aSLionel Sambuc 6