1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

Fix a mis-leading comment.

llvm-svn: 28350
This commit is contained in:
Evan Cheng 2006-05-17 18:08:20 +00:00
parent 9a0d02f8f7
commit 09c4a5d032

View File

@ -173,7 +173,7 @@ public:
}
/// getPackedTypeBreakdown - Packed types are broken down into some number of
/// legal scalar types. For example, <8 x float> maps to 2 MVT::v2f32 values
/// legal first class types. For example, <8 x float> maps to 2 MVT::v2f32
/// 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.
///