Treat copysignl like the other copysign functions.
[oota-llvm.git] / test / FrontendC / 2009-05-04-EnumInreg.c
1 // RUN: %llvmgcc -S -m32 -mregparm=3 %s -emit-llvm -o - | grep {inreg %action}
2 // XFAIL: *
3 // XTARGET: x86,i386,i686
4 // PR3967
5
6 enum kobject_action {
7         KOBJ_ADD,
8         KOBJ_REMOVE,
9         KOBJ_CHANGE,
10         KOBJ_MOVE,
11         KOBJ_ONLINE,
12         KOBJ_OFFLINE,
13         KOBJ_MAX
14 };
15
16 struct kobject;
17
18 int kobject_uevent(struct kobject *kobj, enum kobject_action action) {}