about summary refs log tree commit diff homepage
path: root/test/regression/2012-05-13-asm-causes-aborts.c
blob: 6622d02b35762ef21c3d40b77ac33e3af25e9ee8 (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee %t1.bc

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