1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix __crashreport_info__ declaration.

llvm-svn: 104300
This commit is contained in:
Daniel Dunbar 2010-05-20 23:50:19 +00:00
parent b5de7de4ce
commit 38460e2596

View File

@ -50,8 +50,8 @@ static void PrintCurStackTrace(raw_ostream &OS) {
// Integrate with crash reporter.
#ifdef __APPLE__
extern "C" const char *__crashreporter_info__;
const char *__crashreporter_info__ = 0;
static const char *__crashreporter_info__ = 0;
asm(".desc ___crashreporter_info__, 0x10");
#endif