diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-06-18 18:45:36 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-06-18 18:45:36 +0000 |
commit | f6ddb737cb882ffbf0b75a9abd50b930cc2b9068 (patch) | |
tree | 572ae13c21f43056e32a362ba6a7452d83eba3e8 /lib/AST/Type.cpp | |
parent | 68584ed35ad819a1668e3f527ba7f5dd4ae6a333 (diff) |
Some cleanups suggested by Chris
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@73713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Type.cpp')
-rw-r--r-- | lib/AST/Type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 1db666fdae..7b45b21e5d 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -1378,7 +1378,7 @@ void DependentSizedArrayType::getAsStringInternal(std::string &S, const Printing void DependentSizedExtVectorType::getAsStringInternal(std::string &S, const PrintingPolicy &Policy) const { getElementType().getAsStringInternal(S, Policy); - S += " __attribute__((ext_vector_ type("; + S += " __attribute__((ext_vector_type("; if (getSizeExpr()) { std::string SStr; llvm::raw_string_ostream s(SStr); |