|
From: <sv...@va...> - 2009-05-04 05:17:07
|
Author: njn
Date: 2009-05-04 06:17:02 +0100 (Mon, 04 May 2009)
New Revision: 9749
Log:
Minor change.
Modified:
branches/DARWIN/coregrind/m_main.c
Modified: branches/DARWIN/coregrind/m_main.c
===================================================================
--- branches/DARWIN/coregrind/m_main.c 2009-05-04 04:56:44 UTC (rev 9748)
+++ branches/DARWIN/coregrind/m_main.c 2009-05-04 05:17:02 UTC (rev 9749)
@@ -1528,7 +1528,7 @@
if (!need_help) {
VG_(debugLog)(1, "main", "Create initial image\n");
-# if defined(VGO_linux)
+# if defined(VGO_linux) || defined(VGO_darwin)
the_iicii.argv = argv;
the_iicii.envp = envp;
the_iicii.toolname = toolname;
@@ -1539,10 +1539,6 @@
/* the_iicii.sp_at_startup is irrelevant */
/* the_iicii.clstack_top is irrelevant */
the_iicii.toolname = toolname;
-# elif defined(VGO_darwin)
- the_iicii.argv = argv;
- the_iicii.envp = envp;
- the_iicii.toolname = toolname;
# else
# error "Unknown platform"
# endif
|