Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s |
Eli Friedman | c508203 | 2009-02-22 03:31:23 +0000 | [diff] [blame] | 2 | |
3 | // PR3433 | ||||
4 | double g1; | ||||
5 | short chk1[__alignof__(g1) == 8 ? 1 : -1]; | ||||
6 | short chk2[__alignof__(double) == 8 ? 1 : -1]; |