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 | gdb-d58a192976eba896842e03d757d72492dbcb9a0b.zip gdb-d58a192976eba896842e03d757d72492dbcb9a0b.tar.gz gdb-d58a192976eba896842e03d757d72492dbcb9a0b.tar.bz2 |
* 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
@@ -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() \ |