about summary refs log tree commit diff homepage
path: root/test/regression/2012-05-13-asm-causes-aborts.c
blob: 322e5bb8746d720f9af5fd4a5683b1d3f59cf515 (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -emit-llvm -O0 -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;
}