diff options
author | Jakub Jelinek <jakub@redhat.com> | 2024-03-14 17:51:32 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2024-03-14 17:51:32 +0100 |
commit | fd7104388406b77ad4b81eb77d976ecfff848913 (patch) | |
tree | 0f6ee66c04285dae4695eee27d49ece05af6cbc9 /gcc/config/gcn | |
parent | 7580e39452b65ab5fb5a06f3f1ad7d59720269b5 (diff) | |
download | gcc-fd7104388406b77ad4b81eb77d976ecfff848913.zip gcc-fd7104388406b77ad4b81eb77d976ecfff848913.tar.gz gcc-fd7104388406b77ad4b81eb77d976ecfff848913.tar.bz2 |
gcn: Fix a comment typo
I've noticed a typo in the comment above ABI_VERSION_SPEC.
Fixed thusly.
2024-03-14 Jakub Jelinek <jakub@redhat.com>
* config/gcn/gcn-hsa.h (ABI_VERSION_SPEC): Fix comment typo.
Diffstat (limited to 'gcc/config/gcn')
-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 e5b93f7..9cf181f 100644 --- a/gcc/config/gcn/gcn-hsa.h +++ b/gcc/config/gcn/gcn-hsa.h @@ -80,7 +80,7 @@ extern unsigned int gcn_local_sym_hash (const char *name); writes a new AMD GPU object file and the ABI version needs to be the same. - LLVM <= 17 defaults to 4 while LLVM >= 18 defaults to 5. GCC supports LLVM >= 13.0.1 and only LLVM >= 14 supports version 5. - Note that Fiji is only suppored with LLVM <= 17 as version 3 i no longer + Note that Fiji is only suppored with LLVM <= 17 as version 3 is no longer supported in LLVM >= 18. */ #define ABI_VERSION_SPEC "march=fiji:--amdhsa-code-object-version=3;" \ "!march=*|march=*:--amdhsa-code-object-version=4" |