about summary refs log tree commit diff homepage
path: root/test/Feature/ubsan_unsigned_overflow.c
blob: 82eacdd74eada4004bc554c553c8e51aea0c9f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// RUN: %llvmgcc %s -fsanitize=unsigned-integer-overflow -emit-llvm -g -O0 -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t.bc 2>&1 | FileCheck %s

// llvm-gcc 2.9 does not support -fsanitize=unsigned-integer-overflow
// REQUIRES: not-llvm-2.9

#include "klee/klee.h"

int main()
{
  unsigned int x;
  unsigned int y;
  volatile unsigned int result;

  klee_make_symbolic(&x, sizeof(x), "x");
  klee_make_symbolic(&y, sizeof(y), "y");

  // CHECK: ubsan_unsigned_overflow.c:20: overflow on unsigned addition
  result = x + y;

  // CHECK: ubsan_unsigned_overflow.c:23: overflow on unsigned subtraction
  result = x - y;

  // CHECK: ubsan_unsigned_overflow.c:26: overflow on unsigned multiplication
  result = x * y;

  return 0;
}