aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/align-x86.c
blob: f6668ddb327ee32cb698a8754ec9991aafdb7f36 (plain)
1
2
3
4
5
6
// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s

// PR3433
double g1;
short chk1[__alignof__(g1) == 8 ? 1 : -1]; 
short chk2[__alignof__(double) == 8 ? 1 : -1];