diff options
Diffstat (limited to 'clang/test/CodeGen/unsupported.c')
-rw-r--r-- | clang/test/CodeGen/unsupported.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/unsupported.c b/clang/test/CodeGen/unsupported.c index c5221493edf..383a06bd1ac 100644 --- a/clang/test/CodeGen/unsupported.c +++ b/clang/test/CodeGen/unsupported.c @@ -2,5 +2,5 @@ int f0(int x) { int vla[x]; - return vla[x-1]; // expected-error {{cannot codegen this return inside scope with VLA yet}} + return vla[x-1]; // expected-error {{cannot compile this return inside scope with VLA yet}} } |