minix/external/bsd/llvm/dist/clang/test/CodeGen/unreachable.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

37 lines
473 B
C

// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// CHECK-NOT: @unreachable
extern void abort() __attribute__((noreturn));
extern int unreachable();
int f0() {
return 0;
unreachable();
}
int f1(int i) {
goto L0;
int a = unreachable();
L0:
return 0;
}
int f2(int i) {
goto L0;
unreachable();
int a;
unreachable();
L0:
a = i + 1;
return a;
}
int f3(int i) {
if (i) {
return 0;
} else {
abort();
}
unreachable();
return 3;
}