Bug 328855 - Support x86-64 in nsStackFrameUnix, r=dbaron

git-svn-id: svn://10.0.0.236/trunk@191410 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
benjamin%smedbergs.us
2006-02-28 18:28:54 +00:00
parent 679c1cd47c
commit 9d75222418
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ void DemangleSymbol(const char * aSymbol,
}
#if defined(linux) && defined(__GNUC__) && (defined(__i386) || defined(PPC)) // i386 or PPC Linux stackwalking code
#if defined(linux) && defined(__GNUC__) && (defined(__i386) || defined(PPC) || defined(__x86_64__)) // i386 or PPC Linux stackwalking code
void DumpStackToFile(FILE* aStream)