From 7c9c083ac9d0011a9b1e3feb891f6960b0b4069c Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 17 Feb 2011 15:15:20 -0500 Subject: [PATCH] Remove "progbits" section flag progbits is set by default on all architectures, and the ARM gcc does not like when it's explicitely there. So remove it. Signed-off-by: Mathieu Desnoyers --- include/ust/marker.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ust/marker.h b/include/ust/marker.h index 8e20dad..9ffbb89 100644 --- a/include/ust/marker.h +++ b/include/ust/marker.h @@ -94,7 +94,7 @@ struct marker { */ \ ".ifndef __mstrtab_" __stringify(channel) "_" __stringify(name) "_channel_" __stringify(unique) "\n\t" \ /*".section __markers_strings\n\t"*/ \ - ".section __markers_strings,\"aw\",@progbits\n\t" \ + ".section __markers_strings,\"aw\"\n\t" \ "__mstrtab_" __stringify(channel) "_" __stringify(name) "_channel_" __stringify(unique) ":\n\t" \ ".string \"" __stringify(channel) "\"\n\t" \ "__mstrtab_" __stringify(channel) "_" __stringify(name) "_name_" __stringify(unique) ":\n\t" \ @@ -106,7 +106,7 @@ struct marker { ); \ asm volatile ( \ /*".section __markers\n\t"*/ \ - ".section __markers,\"aw\",@progbits\n\t" \ + ".section __markers,\"aw\"\n\t" \ "2:\n\t" \ _ASM_PTR "(__mstrtab_" __stringify(channel) "_" __stringify(name) "_channel_" __stringify(unique) ")\n\t" /* channel string */ \ _ASM_PTR "(__mstrtab_" __stringify(channel) "_" __stringify(name) "_name_" __stringify(unique) ")\n\t" /* name string */ \ @@ -125,7 +125,7 @@ struct marker { _ASM_PTR "(1f)\n\t" /* location */ \ ".previous\n\t" \ /*".section __markers_ptrs\n\t"*/ \ - ".section __markers_ptrs,\"a\",@progbits\n\t" \ + ".section __markers_ptrs,\"a\"\n\t" \ ".balign 8\n\t" \ _ASM_PTR "(2b)\n\t" \ ".previous\n\t" \ -- 2.34.1