summaryrefslogtreecommitdiff
path: root/arm
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-07-11 08:22:38 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-07-11 08:22:38 +0000
commit99b02bd388f2b84acf9c2c226bf2ac7703c03ba8 (patch)
tree535f92607fe6e16d05750d07234efe1cd6297141 /arm
parent9e76f90bc5255d6ec933d705bf99baf3ca80d5d5 (diff)
Strip quotes from section names during #pragma parsing.
Reinstall the quotes when printing asm. The idea is that .sdump files now contain unquoted section names, which is easier on cchecklink. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1967 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'arm')
-rw-r--r--arm/PrintAsm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm/PrintAsm.ml b/arm/PrintAsm.ml
index 36becdc..6d6296b 100644
--- a/arm/PrintAsm.ml
+++ b/arm/PrintAsm.ml
@@ -116,7 +116,7 @@ let name_of_section_ELF = function
| Section_literal -> ".text"
| Section_jumptable -> ".text"
| Section_user(s, wr, ex) ->
- sprintf ".section %s,\"a%s%s\",%%progbits"
+ sprintf ".section \"%s\",\"a%s%s\",%%progbits"
s (if wr then "w" else "") (if ex then "x" else "")
let section oc sec =