[PATCH] D81833: [X86][FPEnv] Lowering of {get,set,reset}_fpenv

Serge Pavlov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 14 08:07:08 PDT 2023


sepavloff added a comment.

Thanks!



================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:34364-34366
+  case ISD::GET_FPENV_MEM:      return lowerGET_FPENV_MEM(Op, DAG);
+  case ISD::SET_FPENV_MEM:      return lowerSET_FPENV_MEM(Op, DAG);
+  case ISD::RESET_FPENV:        return lowerRESET_FPENV(Op, DAG);
----------------
pengfei wrote:
> Maybe use upper `L` to match with other functions here.
No problem.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D81833/new/

https://reviews.llvm.org/D81833



More information about the llvm-commits mailing list