diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-08-05 18:49:43 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-08-05 18:49:43 +0000 |
commit | d7293d7fcb608423cb0d05acb6a026ddc04e1d84 (patch) | |
tree | f8e09068d92b089022236857b91f3e1afc33f14a /clang/test/SemaObjC/format-strings-objc.m | |
parent | 518b26cdcd126b55c971dcfde83bf7789709f4a9 (diff) | |
download | bcm5719-llvm-d7293d7fcb608423cb0d05acb6a026ddc04e1d84.tar.gz bcm5719-llvm-d7293d7fcb608423cb0d05acb6a026ddc04e1d84.zip |
Implement C++'s restrictions on the type of an expression passed to a vararg
function: it can't be 'void' and it can't be an initializer list. We give a
hard error for these rather than treating them as undefined behavior (we can
and probably should do the same for non-POD types in C++11, but as of this
change we don't).
Slightly rework the checking of variadic arguments in a function with a format
attribute to ensure that certain kinds of format string problem (non-literal
string, too many/too few arguments, ...) don't suppress this error.
llvm-svn: 187735
Diffstat (limited to 'clang/test/SemaObjC/format-strings-objc.m')
-rw-r--r-- | clang/test/SemaObjC/format-strings-objc.m | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/format-strings-objc.m b/clang/test/SemaObjC/format-strings-objc.m index 84901302243..a63d17328d8 100644 --- a/clang/test/SemaObjC/format-strings-objc.m +++ b/clang/test/SemaObjC/format-strings-objc.m @@ -232,6 +232,8 @@ void testInvalidFormatArgument(NSDictionary *dict) { // <rdar://problem/11825593> void testByValueObjectInFormat(Foo *obj) { printf("%d %d %d", 1L, *obj, 1L); // expected-error {{cannot pass object with interface type 'Foo' by value to variadic function; expected type from format string was 'int'}} expected-warning 2 {{format specifies type 'int' but the argument has type 'long'}} + printf("%!", *obj); // expected-error {{cannot pass object with interface type 'Foo' by value through variadic function}} expected-warning {{invalid conversion specifier}} + printf(0, *obj); // expected-error {{cannot pass object with interface type 'Foo' by value through variadic function}} [Bar log2:@"%d", *obj]; // expected-error {{cannot pass object with interface type 'Foo' by value to variadic method; expected type from format string was 'int'}} } |