diff options
Diffstat (limited to 'gcc/gcc-test/src/i686.S')
-rw-r--r-- | gcc/gcc-test/src/i686.S | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/gcc-test/src/i686.S b/gcc/gcc-test/src/i686.S new file mode 100644 index 0000000..3ed9e86 --- /dev/null +++ b/gcc/gcc-test/src/i686.S @@ -0,0 +1,9 @@ +.globl asm +asm: + mov $7, %eax + ret + +.globl _asm +_asm: + mov $7, %eax + ret |