[PATCH] D49865: Inform the AST of #pragma FENV_ACCESS use

Kevin P. Neal via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 30 12:06:05 PDT 2018


kpn marked 3 inline comments as done.
kpn added inline comments.


================
Comment at: include/clang/Basic/LangOptions.h:273-280
   FPOptions() : fp_contract(LangOptions::FPC_Off) {}
 
   // Used for serializing.
   explicit FPOptions(unsigned I)
       : fp_contract(static_cast<LangOptions::FPContractModeKind>(I)) {}
 
   explicit FPOptions(const LangOptions &LangOpts)
----------------
rsmith wrote:
> These constructors need to be updated.
I think this is what you intend?


https://reviews.llvm.org/D49865





More information about the cfe-commits mailing list