[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / Parser / knr_parameter_attributes.c
blobfb975cbf332754714e513835e9de27a01cbc0b76
1 // RUN: %clang_cc1 -fsyntax-only -W -Wall -Werror -verify %s
3 int f(int i __attribute__((__unused__)))
5 return 0;
7 int g(i)
8 int i __attribute__((__unused__));
10 return 0;