This revision was automatically updated to reflect the committed changes.
Closed by commit rGb471e25a5924: [clang] Support __float128 on DragonFlyBSD.
(authored by fcambus).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111760/new/
https://reviews.l
mgorny accepted this revision.
mgorny added a comment.
This revision is now accepted and ready to land.
Ok then.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111760/new/
https://reviews.llvm.org/D111760
___
fcambus added inline comments.
Comment at: clang/lib/Basic/Targets/OSTargets.h:182
DefineStd(Builder, "unix", Opts);
+if (this->HasFloat128)
+ Builder.defineMacro("__FLOAT128__");
mgorny wrote:
> Maybe I'm missing something but do you actually need
mgorny added inline comments.
Comment at: clang/lib/Basic/Targets/OSTargets.h:182
DefineStd(Builder, "unix", Opts);
+if (this->HasFloat128)
+ Builder.defineMacro("__FLOAT128__");
Maybe I'm missing something but do you actually need to state `this->`
fcambus created this revision.
fcambus added reviewers: emaste, joerg, mgorny, krytarowski.
fcambus requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D111760
Files:
clang/lib/