From 1046fe30514e78937df7a4d0c0b5f857103bfc1e Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Wed, 6 Nov 2002 22:07:38 +0000 Subject: [PATCH] Added quotes to assembly language output. --- tools/winebuild/import.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c index 5fd70c6eef4..246b8010592 100644 --- a/tools/winebuild/import.c +++ b/tools/winebuild/import.c @@ -857,12 +857,12 @@ static int output_delayed_imports( FILE *outfile ) { /* Hmpf. Stupid sparc assembler always interprets global variable names as GOT offsets, so we have to do it the long way ... */ - fprintf( outfile, "save %%sp, -96, %%sp\\n" ); - fprintf( outfile, "0:\\tcall 1f\\n\\tnop\\n" ); - fprintf( outfile, "1:\\tsethi %%hi(delay_imports+%d-0b), %%g1\\n\\t", pos ); - fprintf( outfile, "or %%g1, %%lo(delay_imports+%d-0b), %%g1\\n\\t", pos ); - fprintf( outfile, "ld [%%g1+%%o7], %%g1\\n\\t" ); - fprintf( outfile, "jmp %%g1\\n\\trestore\\n" ); + fprintf( outfile, "\"save %%sp, -96, %%sp\\n\"" ); + fprintf( outfile, "\"0:\\tcall 1f\\n\\tnop\\n\"" ); + fprintf( outfile, "\"1:\\tsethi %%hi(delay_imports+%d-0b), %%g1\\n\\t\"", pos ); + fprintf( outfile, "\"or %%g1, %%lo(delay_imports+%d-0b), %%g1\\n\\t\"", pos ); + fprintf( outfile, "\"ld [%%g1+%%o7], %%g1\\n\\t\"" ); + fprintf( outfile, "\"jmp %%g1\\n\\trestore\\n\"" ); } #elif defined(__PPC__)