Skip to content

Commit

Permalink
New testcase
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7643 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Aug 6, 2003
1 parent 326e40a commit 51a754e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/CFrontend/2003-08-06-BuiltinSetjmpLongjmp.c.tr
Original file line number Diff line number Diff line change
@@ -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);
}

0 comments on commit 51a754e

Please sign in to comment.