summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-05 21:53:25 +0000
committershebs <shebs@138bc75d-0d04-0410-961f-82ee72b054a4>2005-01-05 21:53:25 +0000
commitdcf3c3f78666dc05f258c10dd9593ed0807910ab (patch)
treec27b13f65573161a8b2c6a26d073bb815e18e4d1
parent44f9861ce8d3a64b2d0fe139c21dd5827165d561 (diff)
downloadppe42-gcc-dcf3c3f78666dc05f258c10dd9593ed0807910ab.tar.gz
ppe42-gcc-dcf3c3f78666dc05f258c10dd9593ed0807910ab.zip
Fix an oopsie in the last commit, sorry
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92971 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/config/darwin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c
index cb3ba0a42e4..bfb962b1b71 100644
--- a/gcc/config/darwin.c
+++ b/gcc/config/darwin.c
@@ -1363,7 +1363,7 @@ darwin_asm_output_dwarf_delta (FILE *file, int size,
{
int islocaldiff = (lab1[0] == '*' && lab1[1] == 'L'
&& lab2[0] == '*' && lab2[1] == 'L');
- char *directive = (size == 8 ? ".quad" : ".long");
+ const char *directive = (size == 8 ? ".quad" : ".long");
if (islocaldiff)
fprintf (file, "\t.set L$set$%d,", darwin_dwarf_label_counter);
OpenPOWER on IntegriCloud