Another typo. Pointed out by Nate Begeman.
authorEvan Cheng <evan.cheng@apple.com>
Wed, 17 May 2006 18:22:14 +0000 (18:22 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Wed, 17 May 2006 18:22:14 +0000 (18:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28353 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetLowering.h
lib/CodeGen/SelectionDAG/TargetLowering.cpp

index 01f63c8a4bc5529a8d1e2ff0b113554beeb59c42..f756a61ffbafc0d256b76981f26dac8182d31536 100644 (file)
@@ -173,7 +173,7 @@ public:
   }
   
   /// getPackedTypeBreakdown - Packed types are broken down into some number of
-  /// legal first class types.  For example, <8 x float> maps to 2 MVT::v2f32
+  /// legal first class types.  For example, <8 x float> maps to 2 MVT::v4f32
   /// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
   /// Similarly, <2 x long> turns into 4 MVT::i32 values with both PPC and X86.
   ///
index de73b7254362ccf174c49f607b104bdbd67fe1c0..15a60aafa8aaf54012617650f827e3b5e1ffb4b9 100644 (file)
@@ -144,7 +144,7 @@ const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
 }
 
 /// getPackedTypeBreakdown - Packed types are broken down into some number of
-/// legal first class types. For example, <8 x float> maps to 2 MVT::v2f32
+/// legal first class types. For example, <8 x float> maps to 2 MVT::v4f32
 /// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
 ///
 /// This method returns the number and type of the resultant breakdown.