20020227-1.c
来自「gcc3.2.1源代码」· C语言 代码 · 共 31 行
C
31 行
/* This testcase failed on mmix-knuth-mmixware. Problem was with storing to an unaligned mem:SC, gcc tried doing it by parts from a (concat:SC (reg:SF 293) (reg:SF 294)). */typedef __complex__ float cf;struct x { char c; cf f; } __attribute__ ((__packed__));extern void f2 (struct x*);extern void f1 (void);intmain (void){ f1 (); exit (0);}voidf1 (void){ struct x s; s.f = 1; s.c = 42; f2 (&s);}voidf2 (struct x *y){ if (y->f != 1 || y->c != 42) abort ();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?