repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2009-05-04-EnumInreg.c
blob
8a76f5f8e9504e06c180395eb81f6709b5f95379
1
// RUN: %llvmgcc -S -m32 -mregparm=3 %s -emit-llvm -o - | grep {inreg %action}
2
// XTARGET: x86
3
// PR3967
4
5
enum
kobject_action
{
6
KOBJ_ADD
,
7
KOBJ_REMOVE
,
8
KOBJ_CHANGE
,
9
KOBJ_MOVE
,
10
KOBJ_ONLINE
,
11
KOBJ_OFFLINE
,
12
KOBJ_MAX
13
};
14
15
struct
kobject
;
16
17
int
kobject_uevent
(
struct
kobject
*
kobj
,
enum
kobject_action action
) {}