OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [miss-format-4.C] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
/* Test warnings for missing format attributes on function pointers.  */
2
/* Origin: Kaveh Ghazi  */
3
/* { dg-do compile } */
4
/* { dg-options "-Wmissing-format-attribute" } */
5
/* { dg-options "-Wmissing-format-attribute -Wno-abi" { target arm_eabi } } */
6
 
7
#include 
8
 
9
typedef void (*noattr_t) (const char *, ...);
10
typedef noattr_t __attribute__ ((__format__(__printf__, 1, 2))) attr_t;
11
 
12
typedef void (*vnoattr_t) (const char *, va_list);
13
typedef vnoattr_t __attribute__ ((__format__(__printf__, 1, 0))) vattr_t;
14
 
15
void
16
foo1 (noattr_t na, attr_t a, vnoattr_t vna, vattr_t va)
17
{
18
  noattr_t na1, na2;
19
  attr_t a1, a2;
20
 
21
  vnoattr_t vna1, vna2;
22
  vattr_t va1, va2;
23
 
24
  na1 = na;
25
  na2 = a; /* { dg-warning "candidate" "assignment warning" } */
26
  a1 = na;
27
  a2 = a;
28
 
29
  vna1 = vna;
30
  vna2 = va; /* { dg-warning "candidate" "assignment warning" } */
31
  va1 = vna;
32
  va1 = va;
33
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.