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
/
2003-08-18-SigSetJmp.c
blob
b7f4553f41d6630f5890652fdff44f0e66802ae7
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
4
#include <setjmp.h>
5
6
sigjmp_buf B
;
7
int
foo
() {
8
sigsetjmp
(
B
,
1
);
9
bar
();
10
}