Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Unified Diff: src/d8.cc

Issue 866843003: Contribution of PowerPC port (continuation of 422063005) - AIX Common1 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/d8.cc
diff --git a/src/d8.cc b/src/d8.cc
index 7157cb81acf85171b94e331ad02e8404323dd0c5..6b4d86f162a9f82e3114a26b18b8dc737bd4ad54 100644
--- a/src/d8.cc
+++ b/src/d8.cc
@@ -62,6 +62,10 @@
#define DCHECK(condition) assert(condition)
#endif
+#if V8_OS_AIX
+#define malloc __linux_malloc
Sven Panne 2015/01/27 11:47:06 Why do we need this? A comment would be nice.
michael_dawson 2015/01/29 00:08:29 This is the comment I'll add explaining: // On AIX
Sven Panne 2015/01/29 09:54:33 Hmmm, if I see this correctly, malloc(0) only happ
michael_dawson 2015/01/29 18:21:58 Will do
+#endif
+
namespace v8 {

Powered by Google App Engine
This is Rietveld 408576698