Commit d4b56511 by Stan Shebs

Fix an oopsie in the last commit, sorry

From-SVN: r92971
parent 65a878f5
...@@ -1363,7 +1363,7 @@ darwin_asm_output_dwarf_delta (FILE *file, int size, ...@@ -1363,7 +1363,7 @@ darwin_asm_output_dwarf_delta (FILE *file, int size,
{ {
int islocaldiff = (lab1[0] == '*' && lab1[1] == 'L' int islocaldiff = (lab1[0] == '*' && lab1[1] == 'L'
&& lab2[0] == '*' && lab2[1] == 'L'); && lab2[0] == '*' && lab2[1] == 'L');
char *directive = (size == 8 ? ".quad" : ".long"); const char *directive = (size == 8 ? ".quad" : ".long");
if (islocaldiff) if (islocaldiff)
fprintf (file, "\t.set L$set$%d,", darwin_dwarf_label_counter); fprintf (file, "\t.set L$set$%d,", darwin_dwarf_label_counter);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment