diff options
-rw-r--r-- | llvm/test/MC/ARM/Windows/thumb-attributes.s | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/Windows/thumb-attributes.s b/llvm/test/MC/ARM/Windows/thumb-attributes.s new file mode 100644 index 00000000000..6396862f00a --- /dev/null +++ b/llvm/test/MC/ARM/Windows/thumb-attributes.s @@ -0,0 +1,16 @@ +@ RUN: llvm-mc -triple thumbv7-windows-itanium -filetype obj -o - %s \ +@ RUN: | llvm-readobj -s - | FileCheck %s + + .syntax unified + .thumb + + .text + + .global function + .thumb_func +function: + bx lr + +@ CHECK: Section +@ CHECK-DAG: IMAGE_SCN_CNT_CODE +@ CHECK-DAG: IMAGE_SCN_MEM_16BIT |