Skip to content

Commit f104804

Browse files
committed
[clang] Remove FEM_Indeterminable (#137661)
Remove FEM_Indeterminable as it is unused and cannot be stored safely in an unsigned bitfield
1 parent ebfae55 commit f104804

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

clang/include/clang/Basic/LangOptions.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -299,10 +299,7 @@ class LangOptionsBase {
299299
};
300300

301301
/// Possible float expression evaluation method choices.
302-
enum FPEvalMethodKind {
303-
/// The evaluation method cannot be determined or is inconsistent for this
304-
/// target.
305-
FEM_Indeterminable = -1,
302+
enum FPEvalMethodKind : unsigned {
306303
/// Use the declared type for fp arithmetic.
307304
FEM_Source = 0,
308305
/// Use the type double for fp arithmetic.

0 commit comments

Comments
 (0)