aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorIlya Enkovich <ilya.enkovich@intel.com>2013-11-20 12:28:29 +0000
committerKirill Yukhin <kyukhin@gcc.gnu.org>2013-11-20 12:28:29 +0000
commit0c509e888c5f91f307b5c28725c2825136ae978c (patch)
treef406e13e4b3d404db41eb93a87204b93ed9fd335 /gcc/dbxout.c
parent0e4fa4ae251be07f035bff32445d0c90e4133002 (diff)
downloadgcc-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.c4
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 ();
}