📄 comdat4.c
字号:
// PR c++/16276// { dg-do link }// { dg-additional-sources " comdat4-aux.cc" }// { dg-options "-O2" }extern voidbar (int x);inline voidfoo (int i){ switch (i) { case 3: case 5: case 6: case 9: case 15: bar (1); break; case 2: case 4: case 7: case 10: case 11: case 12: bar (2); break; case 0: case 1: case 8: case 13: case 16: bar (3); break; case 14: bar (4); break; default: bar (5); break; }}void *fooaddr = (void *) foo;voidbar (int x){ __asm __volatile ("" : : "r" (x));}intmain (void){ return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -