diff options
author | Eric Christopher <echristo@apple.com> | 2010-06-28 18:33:48 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-06-28 18:33:48 +0000 |
commit | 7f103a2653d2c851fd935a07e34aca30bfe10682 (patch) | |
tree | 3b861491abbb84ad4afe39170154d06b0d3dfe62 /llvm/lib/Support/PrettyStackTrace.cpp | |
parent | d250b8e9a82f3147d9056cc615afab0df2e3989f (diff) | |
download | bcm5719-llvm-7f103a2653d2c851fd935a07e34aca30bfe10682.tar.gz bcm5719-llvm-7f103a2653d2c851fd935a07e34aca30bfe10682.zip |
Fix thinko.
llvm-svn: 107042
Diffstat (limited to 'llvm/lib/Support/PrettyStackTrace.cpp')
-rw-r--r-- | llvm/lib/Support/PrettyStackTrace.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Support/PrettyStackTrace.cpp b/llvm/lib/Support/PrettyStackTrace.cpp index 2fecce38453..a99ab2f30df 100644 --- a/llvm/lib/Support/PrettyStackTrace.cpp +++ b/llvm/lib/Support/PrettyStackTrace.cpp @@ -58,11 +58,13 @@ static void PrintCurStackTrace(raw_ostream &OS) { #if defined (__APPLE__) && defined (HAVE_CRASHREPORTERCLIENT_H) // If any clients of llvm try to link to libCrashReporterClient.a themselves, // only one crash info struct will be used. +extern "C" { CRASH_REPORTER_CLIENT_HIDDEN struct crashreporter_annotations_t gCRAnnotations __attribute__((section("__DATA," CRASHREPORTER_ANNOTATIONS_SECTION))) - = { CRASHREPORTER_ANNOTATIONS_VERSION, 0, 0, 0 }; -#else if defined (__APPLE__) + = { CRASHREPORTER_ANNOTATIONS_VERSION, 0, 0, 0, 0 }; +} +#elif defined (__APPLE__) static const char *__crashreporter_info__ = 0; asm(".desc ___crashreporter_info__, 0x10"); #endif |