Skip to content

Commit

Permalink
[FPEnv] Update comment about nofpexcept default. NFC
Browse files Browse the repository at this point in the history
It no longer defaults to false as of 6333679

Reviewed By: arsenm

Differential Revision: https://reviews.llvm.org/D154973
  • Loading branch information
lukel97 committed Jul 11, 2023
1 parent ebdd610 commit e2d7d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/include/llvm/CodeGen/SelectionDAGNodes.h
Expand Up @@ -392,8 +392,8 @@ struct SDNodeFlags {
// We assume instructions do not raise floating-point exceptions by default,
// and only those marked explicitly may do so. We could choose to represent
// this via a positive "FPExcept" flags like on the MI level, but having a
// negative "NoFPExcept" flag here (that defaults to true) makes the flag
// intersection logic more straightforward.
// negative "NoFPExcept" flag here makes the flag intersection logic more
// straightforward.
bool NoFPExcept : 1;
// Instructions with attached 'unpredictable' metadata on IR level.
bool Unpredictable : 1;
Expand Down

0 comments on commit e2d7d98

Please sign in to comment.