summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Elliott <selliott@lowrisc.org>2019-09-03 08:47:58 +0000
committerSam Elliott <selliott@lowrisc.org>2019-09-03 08:47:58 +0000
commit03c9e139c7a71a0d44e382c0f6ca1064cfd97590 (patch)
treec604a3ad6d31693967e4dfebd53062692e71b6c6
parent0469b0e4ef71ae4ae1f81055bc5399e04ac11927 (diff)
downloadbcm5719-llvm-03c9e139c7a71a0d44e382c0f6ca1064cfd97590.tar.gz
bcm5719-llvm-03c9e139c7a71a0d44e382c0f6ca1064cfd97590.zip
[RISCV] Correct Logic around ilp32e macros
Summary: GCC seperates the `__riscv_float_abi_*` macros and the `__riscv_abi_rve` macro. If the chosen abi is ilp32e, `gcc -march=rv32i -mabi=ilp32i -E -dM` shows that both `__riscv_float_abi_soft` and `__riscv_abi_rve` are set. This patch corrects the compiler logic around these defines. At the moment, this patch will not change clang's behaviour, because we do not accept the `ilp32e` abi yet. Reviewers: luismarques, asb Reviewed By: luismarques Subscribers: rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, kito-cheng, shiva0217, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, rkruppe, PkmX, jocewei, psnobl, benna, Jim, s.egerton, pzheng, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D66591 llvm-svn: 370709
-rw-r--r--clang/lib/Basic/Targets/RISCV.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/lib/Basic/Targets/RISCV.cpp b/clang/lib/Basic/Targets/RISCV.cpp
index d1166d90df4..0a8df86fc88 100644
--- a/clang/lib/Basic/Targets/RISCV.cpp
+++ b/clang/lib/Basic/Targets/RISCV.cpp
@@ -96,11 +96,12 @@ void RISCVTargetInfo::getTargetDefines(const LangOptions &Opts,
Builder.defineMacro("__riscv_float_abi_single");
else if (ABIName == "ilp32d" || ABIName == "lp64d")
Builder.defineMacro("__riscv_float_abi_double");
- else if (ABIName == "ilp32e")
- Builder.defineMacro("__riscv_abi_rve");
else
Builder.defineMacro("__riscv_float_abi_soft");
+ if (ABIName == "ilp32e")
+ Builder.defineMacro("__riscv_abi_rve");
+
if (HasM) {
Builder.defineMacro("__riscv_mul");
Builder.defineMacro("__riscv_div");
OpenPOWER on IntegriCloud