diff options
author | Tobias Burnus <tburnus@baylibre.com> | 2024-01-25 15:43:50 +0100 |
---|---|---|
committer | Tobias Burnus <tburnus@baylibre.com> | 2024-01-25 15:43:50 +0100 |
commit | 3fc39658dfe12c99e981eb1e1d8c6474da865e0b (patch) | |
tree | c811e3790211393fcd263d0a5692de286613ca1b | |
parent | acc22d56e140220e7dc6c138918cb6754b6d1c0b (diff) | |
download | gcc-3fc39658dfe12c99e981eb1e1d8c6474da865e0b.zip gcc-3fc39658dfe12c99e981eb1e1d8c6474da865e0b.tar.gz gcc-3fc39658dfe12c99e981eb1e1d8c6474da865e0b.tar.bz2 |
gcn: Add missing space to ASM_SPEC in gcn-hsa.h
gcc/
* config/gcn/gcn-hsa.h (ASM_SPEC): Add space after -mxnack= argument.
-rw-r--r-- | gcc/config/gcn/gcn-hsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/gcn/gcn-hsa.h b/gcc/config/gcn/gcn-hsa.h index bf7079f..f5de0d2 100644 --- a/gcc/config/gcn/gcn-hsa.h +++ b/gcc/config/gcn/gcn-hsa.h @@ -89,7 +89,7 @@ extern unsigned int gcn_local_sym_hash (const char *name); #define ASM_SPEC "-triple=amdgcn--amdhsa " \ "%{march=*:-mcpu=%*} " \ "%{!march=*|march=fiji:--amdhsa-code-object-version=3} " \ - "%{" NO_XNACK XNACKOPT "}" \ + "%{" NO_XNACK XNACKOPT "} " \ "%{" NO_SRAM_ECC SRAMOPT "} " \ "%{march=gfx1030|march=gfx1100:-mattr=+wavefrontsize64} " \ "-filetype=obj" |