📄 uninit-c.c
字号:
/* Spurious uninitialized variable warning, inspired by libgcc2.c. *//* { dg-do compile } *//* { dg-options "-O -Wuninitialized" } *//* Not all platforms support TImode integers. */#if defined(__LP64__) && !defined(__hppa__)typedef int TItype __attribute__ ((mode (TI)));#elsetypedef long TItype;#endifTItype__subvdi3 (TItype a, TItype b){ TItype w; w = a - b; return w;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -