aboutsummaryrefslogtreecommitdiff
path: root/test/pecoff/Inputs/armnt-blx23t.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/pecoff/Inputs/armnt-blx23t.s')
-rw-r--r--test/pecoff/Inputs/armnt-blx23t.s33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/pecoff/Inputs/armnt-blx23t.s b/test/pecoff/Inputs/armnt-blx23t.s
deleted file mode 100644
index 89aa4194faae..000000000000
--- a/test/pecoff/Inputs/armnt-blx23t.s
+++ /dev/null
@@ -1,33 +0,0 @@
-
-# __declspec(noinline) int identity(int i) { return i; }
-# int function() { return identity(32) + 1; }
-
- .syntax unified
- .thumb
- .text
-
- .def identity
- .scl 2
- .type 32
- .endef
- .global identity
- .align 2
- .thumb_func
-identity:
- bx lr
-
- .def function
- .scl 2
- .type 32
- .endef
- .global function
- .align 2
- .thumb_func
-function:
- push.w {r11, lr}
- mov r11, sp
- movs r0, 32
- bl identity
- adds r0, 1
- pop.w {r11, pc}
-