PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2007-09-28-PackedUnionMember.c
blob79f48ceaeeae0daeae4ea7911a68830d336163a7
1 // RUN: %llvmgcc %s -S -o -
3 #pragma pack(push, 2)
4 struct H {
5 unsigned long f1;
6 unsigned long f2;
7 union {
8 struct opaque1 *f3;
9 struct opaque2 *f4;
10 struct {
11 struct opaque3 *f5;
12 unsigned short f6;
13 } f7;
14 } f8;
16 #pragma pack(pop)
18 struct E {
19 unsigned long f1;
20 unsigned long f2;
23 typedef long (*FuncPtr) ();
25 extern long bork(FuncPtr handler, const struct E *list);
27 static long hndlr()
29 struct H cmd = { 4, 412 };
30 return 0;
32 void foo(void *inWindow) {
33 static const struct E events[] = {
34 { 123124, 1 }
36 bork(hndlr, events);