[llvm] r225455 - [X86] Reflow comment. NFC.

Ahmed Bougacha ahmed.bougacha at gmail.com
Thu Jan 8 09:49:49 PST 2015


Author: ab
Date: Thu Jan  8 11:49:48 2015
New Revision: 225455

URL: http://llvm.org/viewvc/llvm-project?rev=225455&view=rev
Log:
[X86] Reflow comment. NFC.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=225455&r1=225454&r2=225455&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Thu Jan  8 11:49:48 2015
@@ -879,9 +879,10 @@ void X86TargetLowering::resetOperationAc
       setLoadExtAction(ISD::SEXTLOAD, InnerVT, VT, Expand);
       setLoadExtAction(ISD::ZEXTLOAD, InnerVT, VT, Expand);
 
-      // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like types,
-      // we have to deal with them whether we ask for Expansion or not. Setting
-      // Expand causes its own optimisation problems though, so leave them legal.
+      // N.b. ISD::EXTLOAD legality is basically ignored except for i1-like
+      // types, we have to deal with them whether we ask for Expansion or not.
+      // Setting Expand causes its own optimisation problems though, so leave
+      // them legal.
       if (VT.getVectorElementType() == MVT::i1)
         setLoadExtAction(ISD::EXTLOAD, InnerVT, VT, Expand);
     }





More information about the llvm-commits mailing list