blob: a1f54fd83ca30bdf3f7cfc7fe56311993697eca2 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | // RUN: %llvmgcc -g -c %s -o %t.bc
// RUN: %klee %t.bc > %t.log
// RUN: grep "3.30* -1.10* 2.420*" %t.log
#include <stdio.h>
float fadd(float a, float b) {
  return a + b;
}
float fsub(float a, float b) {
  return a - b;
}
float fmul(float a, float b) {
  return a * b;
}
int main() {
  printf("%f %f %f\n", fadd(1.1, 2.2), fsub(1.1, 2.2), fmul(1.1, 2.2));
  return 0;
}
 |