diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:57:38 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:57:38 +0000 |
commit | 5a5c549fe9a3fef595297bd21d36bed8409dc37d (patch) | |
tree | a964c8f5ac85b7b641cac022c5f9bf4eed3d2b9b /test/COFF/Inputs/armnt-executable.s | |
parent | fb911942f1434f3d1750f83f25f5e42c80e60638 (diff) | |
download | src-test2-5a5c549fe9a3fef595297bd21d36bed8409dc37d.tar.gz src-test2-5a5c549fe9a3fef595297bd21d36bed8409dc37d.zip |
Notes
Diffstat (limited to 'test/COFF/Inputs/armnt-executable.s')
-rw-r--r-- | test/COFF/Inputs/armnt-executable.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/COFF/Inputs/armnt-executable.s b/test/COFF/Inputs/armnt-executable.s new file mode 100644 index 000000000000..7e1a8ce82120 --- /dev/null +++ b/test/COFF/Inputs/armnt-executable.s @@ -0,0 +1,13 @@ +# void mainCRTStartup() {} + .syntax unified + .thumb + .text + .def mainCRTStartup + .scl 2 + .type 32 + .endef + .global mainCRTStartup + .align 2 + .thumb_func +mainCRTStartup: + bx lr |