0138d6b24f
gcc/ * gimplify.c (gimplify_vla_decl): Don't touch an existing DECL_VALUE_EXPR. gcc/cp/ * decl.c (compute_array_index_type): Allow VLAs in C++1y mode. (check_array_initializer): Allow VLA init. (reshape_init_array_1): Adjust. (cp_finish_decl): Check for invalid VLA length. * typeck2.c (process_init_constructor_array): Adjust. (store_init_value): Use build_vec_init for VLAs. * semantics.c (add_capture): Capture VLA as ptr+len. (vla_capture_type): New. (build_capture_proxy): Rebuild the VLA. * typeck.c (build_simple_component_ref): Split out from... (build_ptrmemfunc_access_expr): ...here. * tree.c (array_of_runtime_bound_p): New. * init.c (throw_bad_array_length): New. (build_vec_init): Use it. * parser.c (cp_convert_range_for): When iterating over a VLA, use it directly rather than bind a reference. * cp-tree.h: Declare new functions. libstdc++-v3/ * libsupc++/new: Add std::bad_array_length. * libsupc++/bad_array_length.cc: New. * libsupc++/eh_aux_runtime.cc: Add __cxa_bad_array_length. * libsupc++/Makefile.in: Build them. * config/abi/pre/gnu.ver: Add new symbols. * config/abi/pre/gnu-versioned-namespace.ver: Add new symbols. From-SVN: r198745
47 lines
1.6 KiB
C++
47 lines
1.6 KiB
C++
// -*- C++ -*- Common throw conditions.
|
|
// Copyright (C) 1994-2013 Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of GCC.
|
|
//
|
|
// GCC is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3, or (at your option)
|
|
// any later version.
|
|
//
|
|
// GCC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
// 3.1, as published by the Free Software Foundation.
|
|
//
|
|
// You should have received a copy of the GNU General Public License and
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
#include "typeinfo"
|
|
#include "exception"
|
|
#include "new"
|
|
#include <cstdlib>
|
|
#include "unwind-cxx.h"
|
|
#include <bits/exception_defines.h>
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_bad_cast ()
|
|
{ _GLIBCXX_THROW_OR_ABORT(std::bad_cast()); }
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_bad_typeid ()
|
|
{ _GLIBCXX_THROW_OR_ABORT(std::bad_typeid()); }
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_throw_bad_array_new_length ()
|
|
{ _GLIBCXX_THROW_OR_ABORT(std::bad_array_new_length()); }
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_throw_bad_array_length ()
|
|
{ _GLIBCXX_THROW_OR_ABORT(std::bad_array_length()); }
|