new16.c

来自「用于进行gcc测试」· C语言 代码 · 共 39 行

C
39
字号
// { dg-do run }// { dg-options "-O2 -fstrict-aliasing" }// Test that we don't let TBAA reorder an assignment across a// placement new.// See PR 29286.typedef __SIZE_TYPE__ size_t;inline void* operator new(size_t, void* __p) throw() { return __p; }void __attribute__((noinline)) bar() {}long __attribute__((noinline)) foo(double *p, int n){  long *f;  for (int i=0; i<n; ++i)  {    int *l = (int *)p;    *l = 0;    f = new (p) long;    *f = -1;  }  bar ();  return *f;}extern "C" void abort(void);int main(){  union {    int i;    long l;  } u;  if (foo((double *)&u, 1) != -1)    abort ();  return 0;}

⌨️ 快捷键说明

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