2009-06-17 02:11:12 +08:00
|
|
|
//***************************************************************************
|
2021-08-29 21:36:24 +08:00
|
|
|
// libs/libxx/libcxxmini/libxx_cxapurevirtual.cxx
|
2009-06-17 02:11:12 +08:00
|
|
|
//
|
2021-02-24 02:12:11 +08:00
|
|
|
// Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
// contributor license agreements. See the NOTICE file distributed with
|
|
|
|
// this work for additional information regarding copyright ownership. The
|
|
|
|
// ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
// "License"); you may not use this file except in compliance with the
|
|
|
|
// License. You may obtain a copy of the License at
|
2009-06-17 02:11:12 +08:00
|
|
|
//
|
2021-02-24 02:12:11 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2009-06-17 02:11:12 +08:00
|
|
|
//
|
2021-02-24 02:12:11 +08:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
2009-06-17 02:11:12 +08:00
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
// Included Files
|
|
|
|
//***************************************************************************
|
|
|
|
|
2011-10-20 03:35:21 +08:00
|
|
|
#include <cassert>
|
|
|
|
|
2009-06-17 02:11:12 +08:00
|
|
|
//***************************************************************************
|
2015-05-05 20:42:58 +08:00
|
|
|
// Pre-processor Definitions
|
2009-06-17 02:11:12 +08:00
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
// Private Data
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
// Operators
|
|
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
|
|
// Name: __cxa_pure_virtual
|
|
|
|
//
|
|
|
|
// Description:
|
2011-10-20 03:35:21 +08:00
|
|
|
// Crash when an un-implemented pure virtual function is called
|
2009-06-17 02:11:12 +08:00
|
|
|
//
|
|
|
|
//***************************************************************************
|
|
|
|
|
2011-10-20 03:35:21 +08:00
|
|
|
extern "C"
|
2009-06-17 02:11:12 +08:00
|
|
|
{
|
2011-10-20 03:35:21 +08:00
|
|
|
void __cxa_pure_virtual(void)
|
|
|
|
{
|
2018-08-24 20:21:15 +08:00
|
|
|
DEBUGPANIC();
|
2011-10-20 03:35:21 +08:00
|
|
|
}
|
2009-06-17 02:11:12 +08:00
|
|
|
}
|