Skip to content
Snippets Groups Projects
Commit 1c8f270a authored by Eli Bendersky's avatar Eli Bendersky
Browse files

Fix test in two ways: remove incorrect comment (the intrinsic generated now

is of the llvm.sjlj.* flavore) and convert grep->FileCheck


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181468 91177308-0d34-0410-b5e6-96231b3b80d8
parent 7ba376be
No related branches found
No related tags found
No related merge requests found
/* RUN: %clang_cc1 %s -emit-llvm -o - | not grep __builtin_ /* RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
* *
* __builtin_longjmp/setjmp should get transformed into llvm.setjmp/longjmp * __builtin_longjmp/setjmp should get transformed into intrinsics.
* just like explicit setjmp/longjmp calls are.
*/ */
// CHECK-NOT: builtin_longjmp
void jumpaway(int *ptr) { void jumpaway(int *ptr) {
__builtin_longjmp(ptr,1); __builtin_longjmp(ptr,1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment