diff options
Diffstat (limited to 'llvm/test/MC/ARM/Inputs')
-rw-r--r-- | llvm/test/MC/ARM/Inputs/1.s | 3 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/2.s | 3 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/3.s | 3 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/4.s | 2 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/5.s | 2 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/6.s | 12 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/7.s | 3 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/attr.s | 5 | ||||
-rw-r--r-- | llvm/test/MC/ARM/Inputs/ident.s | 1 |
9 files changed, 34 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/Inputs/1.s b/llvm/test/MC/ARM/Inputs/1.s new file mode 100644 index 00000000000..0afcc633f64 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/1.s @@ -0,0 +1,3 @@ + .section .foobar,"ax",%progbits + nop + .word 32 diff --git a/llvm/test/MC/ARM/Inputs/2.s b/llvm/test/MC/ARM/Inputs/2.s new file mode 100644 index 00000000000..0ecdb294ab8 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/2.s @@ -0,0 +1,3 @@ + .section .foobar,"",%progbits + nop + .word 32 diff --git a/llvm/test/MC/ARM/Inputs/3.s b/llvm/test/MC/ARM/Inputs/3.s new file mode 100644 index 00000000000..09392623fc1 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/3.s @@ -0,0 +1,3 @@ + .section .foobar,"aw",%progbits + nop + .word 32 diff --git a/llvm/test/MC/ARM/Inputs/4.s b/llvm/test/MC/ARM/Inputs/4.s new file mode 100644 index 00000000000..28d8244bb41 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/4.s @@ -0,0 +1,2 @@ + .section .foobar,"",%progbits + .word 32 diff --git a/llvm/test/MC/ARM/Inputs/5.s b/llvm/test/MC/ARM/Inputs/5.s new file mode 100644 index 00000000000..1faef539b13 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/5.s @@ -0,0 +1,2 @@ + .section .foobar,"aw",%progbits + .word 32 diff --git a/llvm/test/MC/ARM/Inputs/6.s b/llvm/test/MC/ARM/Inputs/6.s new file mode 100644 index 00000000000..0fdb9daaf29 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/6.s @@ -0,0 +1,12 @@ + .section .foo + .word 30 + .word 31 + .word 32 + .word 33 + nop + .word 34 + .word 35 + .word 36 + .word 37 + .word 38 + nop diff --git a/llvm/test/MC/ARM/Inputs/7.s b/llvm/test/MC/ARM/Inputs/7.s new file mode 100644 index 00000000000..b92a61ec971 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/7.s @@ -0,0 +1,3 @@ + .section .foobar,"aw",%progbits + .word 32 + nop diff --git a/llvm/test/MC/ARM/Inputs/attr.s b/llvm/test/MC/ARM/Inputs/attr.s new file mode 100644 index 00000000000..412cad76842 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/attr.s @@ -0,0 +1,5 @@ + .text + .syntax unified + .eabi_attribute 67, "2.09" @ Tag_conformance + .cpu arm7tdmi + .eabi_attribute 6, 2 @ Tag_CPU_arch diff --git a/llvm/test/MC/ARM/Inputs/ident.s b/llvm/test/MC/ARM/Inputs/ident.s new file mode 100644 index 00000000000..19d65fcc7e0 --- /dev/null +++ b/llvm/test/MC/ARM/Inputs/ident.s @@ -0,0 +1 @@ + .ident "LLVM ARM Compiler" |