From: Simon Pilgrim Date: Wed, 29 Mar 2017 15:41:58 +0000 (+0000) Subject: [X86] Tidied up comment - we don't custom lower add/sub i64 on i686 anymore. NFCI. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7f209a331eff331d159a17e0906e57056a5ce1e;p=llvm [X86] Tidied up comment - we don't custom lower add/sub i64 on i686 anymore. NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299004 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 94cce3d6ae7..48fa7c07f85 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -435,7 +435,8 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM, setOperationAction(ISD::ExternalSymbol , VT, Custom); setOperationAction(ISD::BlockAddress , VT, Custom); } - // 64-bit addm sub, shl, sra, srl (iff 32-bit x86) + + // 64-bit shl, sra, srl (iff 32-bit x86) for (auto VT : { MVT::i32, MVT::i64 }) { if (VT == MVT::i64 && !Subtarget.is64Bit()) continue;