diff options
author | John McCall <rjmccall@apple.com> | 2011-10-17 18:09:15 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-10-17 18:09:15 +0000 |
commit | 0ddaeb9b031070ec64afe92d9892875ac44df427 (patch) | |
tree | fabdbbd8a366601ea6548bdabd2d458b1ac26e1a /lib/AST/MicrosoftMangle.cpp | |
parent | 4919dfd54e2296ca997e3d1c9dab85976bba8e95 (diff) |
Add a new placeholder type to represent "unbridged"
casts in ARC.
No semantic analysis yet.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@142208 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/MicrosoftMangle.cpp')
-rw-r--r-- | lib/AST/MicrosoftMangle.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AST/MicrosoftMangle.cpp b/lib/AST/MicrosoftMangle.cpp index 1515db49fe..98fc2d52cb 100644 --- a/lib/AST/MicrosoftMangle.cpp +++ b/lib/AST/MicrosoftMangle.cpp @@ -705,6 +705,7 @@ void MicrosoftCXXNameMangler::mangleType(const BuiltinType *T) { case BuiltinType::Dependent: case BuiltinType::UnknownAny: case BuiltinType::BoundMember: + case BuiltinType::ARCUnbridgedCast: llvm_unreachable( "Overloaded and dependent types shouldn't get to name mangling"); case BuiltinType::ObjCId: Out << "PAUobjc_object@@"; break; |