[PATCH] D31167: Use FPContractModeKind universally
Adam Nemet via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 29 13:31:05 PDT 2017
anemet added inline comments.
================
Comment at: include/clang/Basic/LangOptions.h:92
+ enum FPContractModeKind {
+ FPC_Off, // Form fused FP ops only where result will not be affected.
+ FPC_On, // Form fused FP ops according to FP_CONTRACT rules.
----------------
aaron.ballman wrote:
> I think you mean effected rather than affected.
I think the verb is affect; effect is the noun. Quick grep confirms:
/org/llvm$ git grep affected | wc -l
109
/org/llvm$ git grep effected | wc -l
2
https://reviews.llvm.org/D31167
More information about the cfe-commits
mailing list