repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix test to not get a moduleid that matches 'br'
[llvm/avr.git]
/
test
/
FrontendC
/
2009-05-04-EnumInreg.c
blob
6dbdb54db5f63b94c6296ee3a3b8578e5950b051
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
) {}