File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- //
9
- // Represent a range of possible values that may occur when the program is run
10
- // for a floating-point value. This keeps track of a lower and upper bound for
11
- // the constant.
12
- //
13
- // Range = [Lower, Upper] U (MayBeQNaN ? QNaN : {}) U (MayBeSNaN ? SNaN : {})
14
- // Specifically, [inf, -inf] represents an empty set.
15
- // Note: -0 is considered to be less than 0. That is, range [0, 0] doesn't
16
- // contain -0.
17
- //
18
- // ===----------------------------------------------------------------------===//
19
8
20
9
#include " llvm/IR/ConstantFPRange.h"
21
10
#include " llvm/ADT/APFloat.h"
You can’t perform that action at this time.
0 commit comments