1 // RUN: %clang_cc1 -triple powerpc-ibm-aix-xcoff -S -emit-llvm -x c++ < %s | \
2 // RUN:   FileCheck %s
3 
4 // RUN: %clang_cc1 -triple powerpc64-ibm-aix-xcoff -S -emit-llvm -x c++ < %s | \
5 // RUN:   FileCheck %s
6 
7 struct C {
8   double x;
9 };
10 
11 typedef struct C __attribute__((__aligned__(2))) CC;
12 
13 CC cc;
14 
15 // CHECK: @cc = global %struct.C zeroinitializer, align 2
16