diff options
| -rw-r--r-- | llvm/lib/Target/X86/X86TargetTransformInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp index 05bfbe51f96..a79a48ef579 100644 --- a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp +++ b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp @@ -1969,7 +1969,7 @@ int X86TTIImpl::getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy, { ISD::ROTR, MVT::v8i32, 1 }, { ISD::ROTR, MVT::v4i32, 1 } }; - // XOP: ROTL = VPROT(X,Y), ROTR = VPROT(SUB(0,X),Y) + // XOP: ROTL = VPROT(X,Y), ROTR = VPROT(X,SUB(0,Y)) static const CostTblEntry XOPCostTbl[] = { { ISD::ROTL, MVT::v4i64, 4 }, { ISD::ROTL, MVT::v8i32, 4 }, |

