1struct p { 2 int x, y; 3}; 4 5struct q { 6 int w; 7}; 8 9static int foo(void) 10{ 11 int x = 1; 12 int y = x; 13 return &x == &y; 14} 15 16static int bar(struct p p) 17{ 18 if (p.x != 0) 19 ; 20} 21 22static int baz(struct p p, struct q q) 23{ 24 if (p.x != 0 || p.y != 1 || q.w == 0) 25 ; 26} 27 28/* 29 * check-name: kill-stores0 30 * check-command: test-linearize $file 31 * 32 * check-output-ignore 33 * check-output-excludes: store\\. 34 */ 35