Devang Patel | 85efa66 | 2007-10-31 21:02:10 +0000 | [diff] [blame^] | 1 | // RUN: clang %s -emit-llvm | grep "STest1 = type { i32, \[4 x i16\], double }" |
2 | // Test struct layout for x86-darwin target | ||||
3 | // FIXME : Enable this test for x86-darwin only. At the moment clang hard codes | ||||
4 | // x86-darwin as the target | ||||
5 | |||||
6 | struct STest1 {int x; short y[4]; double z; } st1; |