aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-05-17 18:08:20 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-05-17 18:08:20 +0000
commit5beaacc189a5c6e6223a55c3ff121dccc4c44a56 (patch)
tree144c81e35a498baa601a9ad788d1c3c68395aae8
parent782e60150eb9370a60fa51ed49bd23036588756a (diff)
Fix a mis-leading comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28350 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Target/TargetLowering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 005a0152a1..01f63c8a4b 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 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.
///