mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 01:29:52 +00:00
5e4c75f4ef
rename -parse-ast-dump to -ast-dump remove -parse-ast, which is redundant with -fsyntax-only llvm-svn: 42852
9 lines
132 B
C
9 lines
132 B
C
// RUN: clang -fsyntax-only -verify --std=c90 %s
|
|
|
|
int f (int z)
|
|
{
|
|
if (z > sizeof (enum {a, b}))
|
|
return a;
|
|
return b;
|
|
}
|