From 3c75a71e7abcf3e7333d32d949019759f1f4be24 Mon Sep 17 00:00:00 2001 From: "dbragg%netscape.com" Date: Mon, 9 Oct 2000 21:03:47 +0000 Subject: [PATCH] Fix for rtm++ bug 50625. Added #pragma optimization_level 1 in non-debug Mac builds. r=sfraser, sr=mscott git-svn-id: svn://10.0.0.236/trunk@80743 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/profile/pref-migrator/src/nsPrefMigration.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mozilla/profile/pref-migrator/src/nsPrefMigration.cpp b/mozilla/profile/pref-migrator/src/nsPrefMigration.cpp index f847c3549c1..7bd3a3c461a 100644 --- a/mozilla/profile/pref-migrator/src/nsPrefMigration.cpp +++ b/mozilla/profile/pref-migrator/src/nsPrefMigration.cpp @@ -60,6 +60,11 @@ #include "nsIWebBrowserChrome.h" #include "nsIWebBrowserChrome.h" +#if defined(XP_MAC) && !defined(DEBUG) +//lower silly optimization level which takes an age for this file. +#pragma optimization_level 1 +#endif + #ifdef DEBUG_seth #define DEBUG_UTF8_CONVERSION 1 #endif