blob: fc616f1976a1e8ffcbeff795544fa34f50e81e78 [file] [log] [blame]
void bar(int);
void foo(void)
{
char buf[1] = { 42 };
const char *p = buf;
const char **q = &p;
int ch = 0;
switch (**q) {
case 4:
ch = 2;
}
bar(ch);
}
/*
* check-name: memops-missed01
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-excludes: store\\.
* check-output-excludes: load\\.
*/