summaryrefslogtreecommitdiff
path: root/test/pecoff/Inputs/executable.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/pecoff/Inputs/executable.s')
-rw-r--r--test/pecoff/Inputs/executable.s17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/pecoff/Inputs/executable.s b/test/pecoff/Inputs/executable.s
new file mode 100644
index 0000000000000..1c58f7331b266
--- /dev/null
+++ b/test/pecoff/Inputs/executable.s
@@ -0,0 +1,17 @@
+
+# void mainCRTStartup(){}
+
+ .syntax unified
+ .thumb
+ .text
+
+ .def mainCRTStartup
+ .scl 2
+ .type 32
+ .endef
+ .global mainCRTStartup
+ .align 2
+ .thumb_func
+mainCRTStartup:
+ bx lr
+