From 89f7ea0382e05ea688c0598e0438765abccecf5b Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Wed, 17 May 2006 18:22:14 +0000 Subject: [PATCH] Another typo. Pointed out by Nate Begeman. llvm-svn: 28353 --- include/llvm/Target/TargetLowering.h | 2 +- lib/Target/TargetLowering.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 01f63c8a4bc..f756a61ffba 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -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. /// diff --git a/lib/Target/TargetLowering.cpp b/lib/Target/TargetLowering.cpp index de73b725436..15a60aafa8a 100644 --- a/lib/Target/TargetLowering.cpp +++ b/lib/Target/TargetLowering.cpp @@ -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.