[llvm] [LLVM][IR] Add constant range support for floating-point types (PR #86483)
NAKAMURA Takumi via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 25 02:36:23 PDT 2024
================
@@ -0,0 +1,249 @@
+//===- ConstantFPRange.cpp - ConstantFPRange implementation ---------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/IR/ConstantFPRange.h"
+#include "llvm/ADT/APFloat.h"
+#include "llvm/Analysis/ValueTracking.h"
----------------
chapuni wrote:
`LLVMCore` should not depend on `llvm/Analysis`.
https://github.com/llvm/llvm-project/pull/86483
More information about the llvm-commits
mailing list