This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
reattach comment to code for darwin.h
- From: Mike Stump <mrs at apple dot com>
- To: "gcc-patches at gcc dot gnu dot org Patches" <gcc-patches at gcc dot gnu dot org>
- Cc: Dale Johannesen <dalej at apple dot com>
- Date: Fri, 22 Sep 2006 12:47:52 -0700
- Subject: reattach comment to code for darwin.h
This fixes a small problem introduced by the fix:
2005-04-24 Devang Patel <dpatel@apple.com>
* config/rs6000/darwin.h (ASM_OUTPUT_MAX_SKIP_ALIGN): New.
and missed by Dale that showed up in merge auditing. :-)
2006-09-22 Mike Stump <mrs@apple.com>
* config/rs6000/darwin.h (PROFILE_HOOK): Reassociate comment with
code.
--- config/rs6000/darwin.h.~1~ 2006-09-21 17:15:28.000000000 -0700
+++ config/rs6000/darwin.h 2006-09-22 12:27:58.000000000 -0700
@@ -288,8 +288,6 @@ do
{ \
fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
} while (0)
-/* Generate insns to call the profiler. */
-
#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
/* This is supported in cctools 465 and later. The macro test
above prevents using it in earlier build environments. */
@@ -303,6 +301,8 @@ do
{ \
}
#endif
+/* Generate insns to call the profiler. */
+
#define PROFILE_HOOK(LABEL) output_profile_hook (LABEL)
/* Function name to call to do profiling. */
--------------