fix macro indentation
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Thu, 7 Jan 2010 19:25:57 +0000 (14:25 -0500)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Mon, 11 Jan 2010 21:07:56 +0000 (16:07 -0500)
include/ust/marker.h

index 1ccd9a3320e3df35498287b4863807733bcd0cef..c3cc0418b79635446395b8e7acaa21f64987e689 100644 (file)
@@ -118,22 +118,22 @@ struct marker {
                     _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_channel_" XSTR(unique) ")\n\t" /* channel string */ \
                     _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_name_" XSTR(unique) ")\n\t" /* name string */ \
                     _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_format_" XSTR(unique) ")\n\t" /* format string */ \
-                    ".byte 0\n\t" /* state imv */ \
-                    ".byte 0\n\t" /* ptype */ \
-                    ".word 0\n\t" /* channel_id */ \
-                    ".word 0\n\t" /* event_id */ \
-                    ".align " XSTR(__SIZEOF_POINTER__) "\n\t" /* alignment */ \
-                    _ASM_PTR "(marker_probe_cb)\n\t" /* call */ \
+                    ".byte 0\n\t" /* state imv */                                              \
+                    ".byte 0\n\t" /* ptype */                                                  \
+                    ".word 0\n\t" /* channel_id */                                             \
+                    ".word 0\n\t" /* event_id */                                               \
+                    ".align " XSTR(__SIZEOF_POINTER__) "\n\t" /* alignment */                  \
+                    _ASM_PTR "(marker_probe_cb)\n\t" /* call */                                \
                     _ASM_PTR "(__mark_empty_function)\n\t" /* marker_probe_closure single.field1 */ \
-                    _ASM_PTR "0\n\t" /* marker_probe_closure single.field2 */ \
-                    _ASM_PTR "0\n\t" /* marker_probe_closure *multi */ \
-                    _ASM_PTR "0\n\t" /* tp_name */ \
-                    _ASM_PTR "0\n\t" /* tp_cb */ \
-                    "__mark_location_" XSTR(unique) ":\n\t" \
-                    _ASM_PTR "(1f)\n\t" /* location */ \
-                    ".previous\n\t" \
-                    "1:\n\t" \
-               ); \
+                    _ASM_PTR "0\n\t" /* marker_probe_closure single.field2 */                  \
+                    _ASM_PTR "0\n\t" /* marker_probe_closure *multi */                         \
+                    _ASM_PTR "0\n\t" /* tp_name */                                             \
+                    _ASM_PTR "0\n\t" /* tp_cb */                                               \
+                    "__mark_location_" XSTR(unique) ":\n\t"                                    \
+                    _ASM_PTR "(1f)\n\t" /* location */                                         \
+                    ".previous\n\t"                                                            \
+                    "1:\n\t"                                                                   \
+               );                                                                              \
                asm volatile ( \
                     "mov ""$__mark_struct_" XSTR(unique) ", %[pmark_struct]\n\t" \
                : [pmark_struct] "=r" (__pmark_##channel##_##name) :: "memory" \
This page took 0.024934 seconds and 4 git commands to generate.