mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 00:24:00 +00:00
New testcase
llvm-svn: 7643
This commit is contained in:
parent
c445413be0
commit
352ceeba9e
@ -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);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user