The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
324 B
20 lines
324 B
#include "symbol-underscore.h" |
|
|
|
#ifdef _MSC_VER |
|
|
|
AREA _TEXT, ARM64, CODE, READONLY |
|
|
|
EXPORT SYMBOL_NAME(square_unsigned) |
|
SYMBOL_NAME(square_unsigned) PROC |
|
mul x1, x0, x0 |
|
mov x0, x1 |
|
ret |
|
SYMBOL_NAME(square_unsigned) ENDP |
|
|
|
END |
|
|
|
#else |
|
|
|
#error gas syntax assembly for this test needs to be written |
|
|
|
#endif
|
|
|