Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-02-07 20:48:44 +0300
committerGitHub <noreply@github.com>2022-02-07 20:48:44 +0300
commit148f536b0b463a111a021b960ee3aeaed0cf203b (patch)
tree3145a4790bcbaf72fd332a4092d2bbf5ca0a1758
parenta6f3e8f179abb1b3c6f5b5a86500b3837cd9eeb4 (diff)
[2020-02] [AOT] Use .short directive instead of .hword (#21419)mono-6.12.0.169
Co-authored-by: Marek Habersack <grendel@twistedcode.net>
-rw-r--r--mono/mini/image-writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mono/mini/image-writer.c b/mono/mini/image-writer.c
index b191269667a..2a63d44bc97 100644
--- a/mono/mini/image-writer.c
+++ b/mono/mini/image-writer.c
@@ -97,7 +97,7 @@
#elif defined(TARGET_ASM_GAS) && defined(TARGET_WIN32)
#define AS_INT16_DIRECTIVE ".word"
#elif defined(TARGET_ASM_GAS)
-#define AS_INT16_DIRECTIVE ".hword"
+#define AS_INT16_DIRECTIVE ".short"
#else
#define AS_INT16_DIRECTIVE ".word"
#endif