aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Cox <coxs@gnu.org>1994-08-31 13:53:39 +0000
committerStan Cox <coxs@gnu.org>1994-08-31 13:53:39 +0000
commit56929fbd6563f5f8d940fb4a2ce7dd22159e4250 (patch)
tree280854f0fb83089b7c16771bd77c704c90ddf08a
parent3427d6e599f1ad8618493a412e09e6fd76d8d2c5 (diff)
downloadgcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.zip
gcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.tar.gz
gcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.tar.bz2
Some assemblers put a "." before pseudo-ops
From-SVN: r8004
-rwxr-xr-xgcc/listing2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/listing b/gcc/listing
index 4c9fe35..08abb1d 100755
--- a/gcc/listing
+++ b/gcc/listing
@@ -162,7 +162,7 @@ BEGIN {
}
}
else if ( sys == "elf" && asm_code ~ "section.*\.debug" ) {
- while ( asm_code !~ "^[ \t]*previous" &&
+ while ( asm_code !~ "^[ \t]*[.]*previous" &&
asm_code !~ "\.popsection" &&
getline asm_code < asm_filename > 0 );
if ( ! (getline asm_code < asm_filename > 0)) break;