diff options
author | Richard Henderson <rth@redhat.com> | 2011-02-15 18:01:07 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2011-02-15 18:01:07 +0000 |
commit | d58a192976eba896842e03d757d72492dbcb9a0b (patch) | |
tree | 2be37124b41d121d861ae270ddb2e39144be3c35 /gas/read.c | |
parent | 5657161fbd78bc44d2e6bc206d9895d50909c39d (diff) | |
download | binutils-gdb-d58a192976eba896842e03d757d72492dbcb9a0b.tar.gz |
* dw2gencfi.c (dot_cfi_dummy): New.
(cfi_pseudo_table) [!TARGET_USE_CFIPOP]: New.
* read.c (pobegin): Unconditionally call cfi_pop_insert.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/read.c b/gas/read.c index ad9363a6044..c38de124e74 100644 --- a/gas/read.c +++ b/gas/read.c @@ -521,11 +521,10 @@ pobegin (void) pop_table_name = "standard"; pop_insert (potable); -#ifdef TARGET_USE_CFIPOP + /* Now CFI ones. */ pop_table_name = "cfi"; pop_override_ok = 1; cfi_pop_insert (); -#endif } #define HANDLE_CONDITIONAL_ASSEMBLY() \ |