diff options
author | Stan Cox <coxs@gnu.org> | 1994-08-31 13:53:39 +0000 |
---|---|---|
committer | Stan Cox <coxs@gnu.org> | 1994-08-31 13:53:39 +0000 |
commit | 56929fbd6563f5f8d940fb4a2ce7dd22159e4250 (patch) | |
tree | 280854f0fb83089b7c16771bd77c704c90ddf08a | |
parent | 3427d6e599f1ad8618493a412e09e6fd76d8d2c5 (diff) | |
download | gcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.zip gcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.tar.gz gcc-56929fbd6563f5f8d940fb4a2ce7dd22159e4250.tar.bz2 |
Some assemblers put a "." before pseudo-ops
From-SVN: r8004
-rwxr-xr-x | gcc/listing | 2 |
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; |