[llvm] Constant Fold Logf128 calls (PR #84501)
Matthew Devereau via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 28 10:23:57 PDT 2024
================
@@ -289,6 +289,10 @@ class ConstantFP final : public ConstantData {
/// host double and as the target format.
static Constant *get(Type *Ty, double V);
+#ifdef __FLOAT128__
+ static Constant *get128(Type *Ty, float128 V);
----------------
MDevereau wrote:
Sure, I've removed this function now.
https://github.com/llvm/llvm-project/pull/84501
More information about the llvm-commits
mailing list