block-printf-attribute-1.c 1.3 KB

123456789101112131415161718192021
  1. // RUN: %clang_cc1 %s -fsyntax-only -verify -fblocks
  2. #include <stdarg.h>
  3. int main() {
  4. void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}}
  5. ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
  6. void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {};
  7. z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
  8. z(1, "%s", "HELLO"); // no-warning
  9. }
  10. void multi_attr(va_list ap, int *x, long *y) {
  11. // Handle block with multiple format attributes.
  12. void (^vprintf_scanf) (const char *, va_list, const char *, ...) __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) =
  13. ^ __attribute__((__format__(__printf__, 1, 0))) __attribute__((__format__(__scanf__, 3, 4))) (const char *str, va_list args, const char *fmt, ...) {};
  14. vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
  15. }