aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorStan Shebs <shebs@gcc.gnu.org>2005-01-05 21:53:25 +0000
committerStan Shebs <shebs@gcc.gnu.org>2005-01-05 21:53:25 +0000
commitd4b5651119f39210c306818cc40e698f305bc23e (patch)
treec27b13f65573161a8b2c6a26d073bb815e18e4d1 /gcc
parent65a878f5db97c74ee215011e1e2411fdc506be8c (diff)
downloadgcc-d4b5651119f39210c306818cc40e698f305bc23e.zip
gcc-d4b5651119f39210c306818cc40e698f305bc23e.tar.gz
gcc-d4b5651119f39210c306818cc40e698f305bc23e.tar.bz2
Fix an oopsie in the last commit, sorry
From-SVN: r92971
Diffstat (limited to 'gcc')
-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 cb3ba0a..bfb962b 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);