From c102b9697bd4ec2b12dab9865661bfb2facc97ec Mon Sep 17 00:00:00 2001 From: "Wang, Pengfei" Date: Fri, 8 Jan 2021 15:36:15 +0800 Subject: [PATCH] [X86] Correct the comments about comparison intrinsics. NFCI. --- clang/lib/CodeGen/CGBuiltin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index 1e0337c..ea39d64 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -13955,8 +13955,7 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID, // Lowering vector comparisons to fcmp instructions, while // ignoring signalling behaviour requested // ignoring rounding mode requested - // This is is only possible as long as FENV_ACCESS is not implemented. - // See also: https://reviews.llvm.org/D45616 + // This is only possible if fp-model is not strict and FENV_ACCESS is off. // The third argument is the comparison condition, and integer in the // range [0, 31] -- 2.7.4