blob: 5619c0a276dd8012eaa523ec8f6ef529f55518ea [file] [log] [blame]
Mike Stumpfe095f32009-05-04 18:40:41 +00001// RUN: %llvmgcc -S -m32 -mregparm=3 %s -emit-llvm -o - | grep {inreg %action}
Dale Johannesen1e07efd2009-06-04 18:27:43 +00002// XFAIL: *
Mike Stumpfe095f32009-05-04 18:40:41 +00003// XTARGET: x86
4// PR3967
5
6enum 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
16struct kobject;
17
18int kobject_uevent(struct kobject *kobj, enum kobject_action action) {}