summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/format-strings-pedantic.c
blob: 8fb298ab7997ec87bbd59243f5324fddd72328a1 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -fsyntax-only -verify -Wformat -Wformat-pedantic -isystem %S/Inputs %s

int printf(const char *restrict, ...);

typedef unsigned char uint8_t;

void print_char_as_short() {
  printf("%hu\n", (unsigned char)1); // expected-warning{{format specifies type 'unsigned short' but the argument has type 'unsigned char'}}
  printf("%hu\n", (uint8_t)1);       // expected-warning{{format specifies type 'unsigned short' but the argument has type 'uint8_t' (aka 'unsigned char')}}
}
OpenPOWER on IntegriCloud