[project @ 2000-07-06 15:43:28 by simonmar]
authorsimonmar <unknown>
Thu, 6 Jul 2000 15:43:28 +0000 (15:43 +0000)
committersimonmar <unknown>
Thu, 6 Jul 2000 15:43:28 +0000 (15:43 +0000)
A string constant block can consist of multiple .string/.ascii
directives.  The sparc-specific code in this file already handled this
properly, but the x86 code was wrong.

ghc/driver/split/ghc-split.lprl

index 7d0fa6e..11702c8 100644 (file)
@@ -290,7 +290,7 @@ sub process_asm_block_iX86 {
     $str = "\.text\n\t.align 4\n" . $str;
 
     # remove/record any literal constants defined here
-    while ( ($str =~ /(\.?(LC\d+):\n\t\.(ascii|string).*\n)/ )) {
+    while ( ($str =~ /(\.?(LC\d+):\n(\t\.(ascii|string).*\n)+)/ )) {
        local($label) = $2;
        local($body)  = $1;
 
@@ -299,7 +299,7 @@ sub process_asm_block_iX86 {
 
        $LocalConstant{$label} = $body;
        
-       $str =~ s/\.?LC\d+:\n\t\.(ascii|string).*\n//;
+       $str =~ s/\.?LC\d+:\n(\t\.(ascii|string).*\n)+//;
     }
 
     # inject definitions for any local constants now used herein