about summary refs log tree commit diff homepage
path: root/test/Feature/AsmAddresses.c
blob: a58fc059a72448c9cdd443dcfbc5fed3652c6dac (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 -o %t.bc %s
// RUN: %klee --exit-on-error --use-asm-addresses %t.bc
// RUN: %llvmgcc -DOVERLAP -g -c -o %t.bc %s
// RUN: not %klee --exit-on-error --use-asm-addresses %t.bc

#include <assert.h>


volatile unsigned char x0 __asm ("0x0021");
volatile unsigned char whee __asm ("0x0WHEE");

#ifdef OVERLAP
volatile unsigned int y0 __asm ("0x0030");
volatile unsigned int y1 __asm ("0x0032");
#endif

int main() {
  assert(&x0 == (void*) 0x0021);
  assert(&whee != (void*) 0x0);

  return 0;
}