about summary refs log tree commit diff homepage
path: root/test/regression/2007-08-06-64bit-shift.c
blob: 958e56c0dcf59519ecd25b1a13bf0a2e69e7916a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee %t1.bc

#include <assert.h>

int main() {
  int d;
  
  klee_make_symbolic( &d, sizeof(d) );

  int l = d - 1;
  unsigned long long m = ((unsigned long long) l << 32) / d;
  if (d==2) {
    assert(m == 2147483648u);
  }

  klee_silent_exit(0);

  return 0;
}