diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-08 15:47:00 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-08 15:47:00 +0000 |
commit | d3a114fe2d887bd3c5f9a3b12b2036fbd6b3795c (patch) | |
tree | a81e609cc437ff1cee8fa81571eea32047d3f1d0 | |
parent | dcf009ca20e974e433719fd8a968f1242ebca4c3 (diff) | |
download | bcm5719-llvm-d3a114fe2d887bd3c5f9a3b12b2036fbd6b3795c.tar.gz bcm5719-llvm-d3a114fe2d887bd3c5f9a3b12b2036fbd6b3795c.zip |
Update test case; I don't really understand why packed enums changed this, but
the new havior is better so...
llvm-svn: 78473
-rw-r--r-- | clang/test/SemaObjC/format-arg-attribute.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/SemaObjC/format-arg-attribute.m b/clang/test/SemaObjC/format-arg-attribute.m index 60cc7cb44f2..dc5aa8932cd 100644 --- a/clang/test/SemaObjC/format-arg-attribute.m +++ b/clang/test/SemaObjC/format-arg-attribute.m @@ -11,8 +11,7 @@ extern void fc3 (const NSString *) __attribute__((format_arg(1, 2))); // expecte struct s1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute only applies to function types}} union u1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute only applies to function types}} -// FIXME: We don't flag this yet. -enum e1 { E1V0 } __attribute__((format_arg(1))); /* { dg-error "does not apply|only applies" "format_arg on enum" } */ +enum e1 { E1V0 } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute only applies to function types}} extern NSString *ff3 (const NSString *) __attribute__((format_arg(3-2))); extern NSString *ff4 (const NSString *) __attribute__((format_arg(foo))); // expected-error {{attribute requires 1 argument(s)}} |