?? omit-frame-pointer2.c
字號:
// Reduced from PR c++/5246, PR c++/2447// { dg-options "-O -fomit-frame-pointer" }// { dg-do run }void step (int){ void *sp = __builtin_alloca (0);}void f2 (void){ step (2); throw int();}void f1 (void){ try { step (1); f2 (); step (-1); } catch (int) { step (3); }}int main (){ f1 (); return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -