diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2012-05-13-asm-causes-aborts.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/regression/2012-05-13-asm-causes-aborts.c b/test/regression/2012-05-13-asm-causes-aborts.c new file mode 100644 index 00000000..6622d02b --- /dev/null +++ b/test/regression/2012-05-13-asm-causes-aborts.c @@ -0,0 +1,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; +} + |