⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 new-delete-2.c

📁 Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码
💻 C
字号:
/* APPLE LOCAL file coalescing *//* Make sure that weak '::new' and '::delete' operators wind   up in a coalesced section and get called via a stub.  *//* Author: Ziemowit Laski <zlaski@apple.com>  *//* { dg-do compile { target powerpc*-*-darwin* } } */extern "C" void free(void *);void operator delete(void*) throw() __attribute__((weak));void operator delete(void* p) throw() { free(p); }void operator delete(void*, int) throw() __attribute__((weak));void *operator new(unsigned long) throw() __attribute__((weak));void *operator new(unsigned long) throw() { return (void *)0; }int *foo(void) {  int *n = new int();  ::operator delete(n, 0);  ::operator delete(n);  return 0;}/* { dg-final { scan-assembler "coal" } } *//* { dg-final { scan-assembler "bl L__Znwm.stub" } } *//* { dg-final { scan-assembler "bl L__ZdlPvi.stub" } } *//* { dg-final { scan-assembler "bl L__ZdlPv.stub" } } */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -