diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-01-24 18:15:20 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-01-24 18:15:20 +0000 |
commit | 6830b2a4935ad88810db04ededddec49a5c42857 (patch) | |
tree | 15061d826b87e749f25808a4e9019c138df828ff /libcxxabi/src/cxa_exception.hpp | |
parent | 5b9deabae8dc1213bda88067602c7f40ca6c1506 (diff) | |
download | bcm5719-llvm-6830b2a4935ad88810db04ededddec49a5c42857.tar.gz bcm5719-llvm-6830b2a4935ad88810db04ededddec49a5c42857.zip |
Move kOurExceptionClass and kOurDependentExceptionClass from source to header so that they can be used in multiple sources. This is a private header, these constants are not publicly exposed.
llvm-svn: 148827
Diffstat (limited to 'libcxxabi/src/cxa_exception.hpp')
-rw-r--r-- | libcxxabi/src/cxa_exception.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libcxxabi/src/cxa_exception.hpp b/libcxxabi/src/cxa_exception.hpp index 346ed38572b..88e3975bdec 100644 --- a/libcxxabi/src/cxa_exception.hpp +++ b/libcxxabi/src/cxa_exception.hpp @@ -17,6 +17,9 @@ namespace __cxxabiv1 { +static const uint64_t kOurExceptionClass = 0x434C4E47432B2B00; // CLNGC++\0 +static const uint64_t kOurDependentExceptionClass = 0x434C4E47432B2B01; // CLNGC++\1 + struct __cxa_exception { #if __LP64__ // This is a new field to support C++ 0x exception_ptr. |