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
remove the "old" at&t style asmprinter. Unfortunately, most of the
[llvm/avr.git]
/
test
/
FrontendC
/
2003-08-18-SigSetJmp.c
blob
fc0d7659de6d157a210a3fc45cee875489a5b117
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
4
#include <setjmp.h>
5
6
sigjmp_buf B
;
7
int
foo
() {
8
sigsetjmp
(
B
,
1
);
9
bar
();
10
}