forked from klee/klee
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37f0da6
commit 90e8cbf
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// RUN: %clang %s -emit-llvm %O0opt -c -g -o %t1.bc | ||
// RUN: rm -rf %t.klee-out | ||
// RUN: %klee --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s | ||
// CHECK-NOT: failed external call | ||
#include "klee-test-comp.c" | ||
extern unsigned __int128 __VERIFIER_nondet_uint128(); | ||
|
||
int main() { | ||
__int128 x = __VERIFIER_nondet_uint128(); | ||
return x > 0; | ||
} |