diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2012-10-04 04:58:17 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2012-10-04 04:58:17 +0000 |
commit | acf0bb4f49059e444dbedeef8188c9bfb6ead8c4 (patch) | |
tree | a26c9d40d5c41a9a119bd905d39fd9910139093d | |
parent | ff4ae6d4031962a7c4fdd344f40a91f0fcd26a64 (diff) |
Add missing comment for mangling.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165202 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/ItaniumMangle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/ItaniumMangle.cpp b/lib/AST/ItaniumMangle.cpp index d8c6594d02..851944a42b 100644 --- a/lib/AST/ItaniumMangle.cpp +++ b/lib/AST/ItaniumMangle.cpp @@ -2095,6 +2095,7 @@ void CXXNameMangler::mangleNeonVectorType(const VectorType *T) { // ::= Dv [<dimension expression>] _ <element type> // <extended element type> ::= <element type> // ::= p # AltiVec vector pixel +// ::= b # Altivec vector bool void CXXNameMangler::mangleType(const VectorType *T) { if ((T->getVectorKind() == VectorType::NeonVector || T->getVectorKind() == VectorType::NeonPolyVector)) { |