diff options
author | Ilya Enkovich <ilya.enkovich@intel.com> | 2013-11-20 12:28:29 +0000 |
---|---|---|
committer | Kirill Yukhin <kyukhin@gcc.gnu.org> | 2013-11-20 12:28:29 +0000 |
commit | 0c509e888c5f91f307b5c28725c2825136ae978c (patch) | |
tree | f406e13e4b3d404db41eb93a87204b93ed9fd335 /gcc/dbxout.c | |
parent | 0e4fa4ae251be07f035bff32445d0c90e4133002 (diff) | |
download | gcc-0c509e888c5f91f307b5c28725c2825136ae978c.zip gcc-0c509e888c5f91f307b5c28725c2825136ae978c.tar.gz gcc-0c509e888c5f91f307b5c28725c2825136ae978c.tar.bz2 |
dbxout.c (dbxout_type): Ignore POINTER_BOUNDS_TYPE.
* dbxout.c (dbxout_type): Ignore POINTER_BOUNDS_TYPE.
* dwarf2out.c (gen_subprogram_die): Ignore bound args.
(gen_type_die_with_usage): Skip pointer bounds.
(dwarf2out_global_decl): Likewise.
From-SVN: r205109
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index ad1533e..bc6a3af 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -2367,6 +2367,10 @@ dbxout_type (tree type, int full) dbxout_type (TREE_TYPE (type), 0); break; + case POINTER_BOUNDS_TYPE: + /* No debug info for pointer bounds type supported yet. */ + break; + default: gcc_unreachable (); } |