blob: 98c9ecde5b2a77eb82fcbda1dd7ed1f1cc9c921d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// RUN: %clang %s -emit-llvm %O0opt -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --max-solver-time=1 %t.bc
//
// Note: This test occasionally fails when using Z3 4.4.1
#include <stdio.h>
int main() {
long long int x, y = 102*75678 + 78, i = 101;
klee_make_symbolic(&x, sizeof(x), "x");
if (x*x*x*x*x*x*x*x*x*x*x*x*x*x*x*x + (x*x % (x+12)) == y*y*y*y*y*y*y*y*y*y*y*y*y*y*y*y % i)
printf("Yes\n");
else printf("No\n");
return 0;
}
|