repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clean up some of LVI:
[llvm.git]
/
test
/
FrontendC
/
2009-05-04-EnumInreg.c
blob
fb0c03e439e6fe224fbf395d83a21fcaffe37ab1
1
// RUN: %llvmgcc -S -m32 -mregparm=3 %s -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
) {}