blob: 1acafbe15aa9c3395a537ac1bed737f52e491661 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// RUN: %clang %s -emit-llvm -g -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc
#include "klee/klee.h"
int main(int argc, char * argv[]) {
int a = klee_int((void*)0);
}
|