blob: 9e168ed34febae3568aa4177a56edfd1d9824586 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -S -o -
2
3
4enum {
5 tA = 0,
6 tB = 1
7};
8
9struct MyStruct {
10 unsigned long A;
11 void * B;
12};
13
14void bar(){
15struct MyStruct MS = { tB, 0 };
16}