about summary refs log tree commit diff homepage
path: root/test/regression/2012-05-13-asm-causes-aborts.c
blob: 53fd0da902e0efca717631e5976094667a4e99a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %clang %s -emit-llvm %O0opt -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc

int main(int argc, char *argv[]){
	__asm__ __volatile__ ("movl %eax, %eax");
	return 0;
}