diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2024-06-17 14:20:10 -0700 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2024-06-18 08:59:24 -0700 |
commit | adadb5c7ba0922ea77bb9ca695f398de67c11c49 (patch) | |
tree | 925775c3b975a98fedb85e69ade740343fddbdaa | |
parent | 79ab7245bea102f2c4ec38bd4b3ba03e7828617f (diff) | |
download | gcc-adadb5c7ba0922ea77bb9ca695f398de67c11c49.zip gcc-adadb5c7ba0922ea77bb9ca695f398de67c11c49.tar.gz gcc-adadb5c7ba0922ea77bb9ca695f398de67c11c49.tar.bz2 |
aarch64: Add comment about thunderxt81/t83 being aliases
Since these were already aliases just make it clear on that.
gcc/ChangeLog:
* config/aarch64/aarch64-cores.def: Add comment
saying thunderxt81/t83 are aliases of octeontx81/83.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/config/aarch64/aarch64-cores.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/aarch64/aarch64-cores.def b/gcc/config/aarch64/aarch64-cores.def index 06a8213..0e05e81 100644 --- a/gcc/config/aarch64/aarch64-cores.def +++ b/gcc/config/aarch64/aarch64-cores.def @@ -67,6 +67,7 @@ AARCH64_CORE("octeontx", octeontx, thunderx, V8A, (CRC, CRYPTO), thu AARCH64_CORE("octeontx81", octeontxt81, thunderx, V8A, (CRC, CRYPTO), thunderx, 0x43, 0x0a2, -1) AARCH64_CORE("octeontx83", octeontxt83, thunderx, V8A, (CRC, CRYPTO), thunderx, 0x43, 0x0a3, -1) +/* thunderxt81/83 are aliases for octeontxt81/83. */ AARCH64_CORE("thunderxt81", thunderxt81, thunderx, V8A, (CRC, CRYPTO), thunderx, 0x43, 0x0a2, -1) AARCH64_CORE("thunderxt83", thunderxt83, thunderx, V8A, (CRC, CRYPTO), thunderx, 0x43, 0x0a3, -1) |