blob: 71359bf5354211824a381a5ae5c8bc200fb9c858 [file] [log] [blame]
Devang Patel85efa662007-10-31 21:02:10 +00001// 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
6struct STest1 {int x; short y[4]; double z; } st1;