Skip to content

Commit

Permalink
updated minigxx_nortti.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Szabo committed Jan 12, 2019
1 parent dece450 commit 590f5bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions minigxx_nortti.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ void* _Znwj /*operator new i386*/(size_t len) __attribute__((alias("emulate_cc
void* _Znaj /*operator new[] i386*/(size_t len) __attribute__((alias("emulate_cc_new")));
void _ZdlPv/*operator delete */(void* p) __attribute__((alias("emulate_cc_delete")));
void _ZdaPv/*operator delete[]*/(void* p) __attribute__((alias("emulate_cc_delete")));
void _ZdlPvm/*operator delete amd64*/(void* p, unsigned long) __attribute__((alias("emulate_cc_delete")));
void _ZdaPvm/*operator delete[] amd64*/(void* p, unsigned long) __attribute__((alias("emulate_cc_delete")));
void _ZdlPvj/*operator delete i386*/(void* p, unsigned int) __attribute__((alias("emulate_cc_delete")));
void _ZdaPvj/*operator delete[] i386*/(void* p, unsigned int) __attribute__((alias("emulate_cc_delete")));

/* See https://libcxxabi.llvm.org/spec.html */
__attribute__((noreturn)) void __cxa_pure_virtual(void) {
Expand Down

0 comments on commit 590f5bc

Please sign in to comment.