New testcase

llvm-svn: 7643
This commit is contained in:
Chris Lattner 2003-08-06 18:26:19 +00:00
parent 584058220a
commit 39a2b3aa08
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/* RUN: llvmgcc -xc %s -c -o - | dis | not grep __builtin_
*
* __builtin_longjmp/setjmp should get transformed into llvm.setjmp/longjmp
* just like explicit setjmp/longjmp calls are.
*/
void jumpaway(int *ptr) {
__builtin_longjmp(ptr,1);
}
int main(void) {
__builtin_setjmp(0);
jumpaway(0);
}