diff options
author | John McCall <rjmccall@apple.com> | 2010-08-21 22:46:04 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-21 22:46:04 +0000 |
commit | 86353416a7115dc430b9cd47a1aaeb8f19c34f2c (patch) | |
tree | e2708df9c05d35abb3985be8ff502ddf133c0a45 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | b186bc3c4b361089918f25f2dcc2de015bb67305 (diff) | |
download | bcm5719-llvm-86353416a7115dc430b9cd47a1aaeb8f19c34f2c.tar.gz bcm5719-llvm-86353416a7115dc430b9cd47a1aaeb8f19c34f2c.zip |
The ARM C++ ABI is sufficiently different from the Itanium C++ ABI that
it deserves its own enumerator. Obviously the implementations should
closely follow the Itanium ABI except in cases of divergence.
llvm-svn: 111749
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index c0df55b808d..2d9d57393ef 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -91,11 +91,15 @@ void CodeGenModule::createObjCRuntime() { void CodeGenModule::createCXXABI() { switch (Context.Target.getCXXABI()) { - default: + case CXXABI_ARM: + ABI = CreateARMCXXABI(*this); + break; + case CXXABI_Itanium: ABI = CreateItaniumCXXABI(*this); break; case CXXABI_Microsoft: ABI = CreateMicrosoftCXXABI(*this); + break; } } |