aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pch/macro-3.c
blob: 493d954980bb3264b1a322538f2105f9921dc9d2 (plain)
1
2
3
4
5
6
7
8
#define DEFINED_FUNC_2(x) (3 + (x))

#include "macro-3.h"

int main(void) 
{
  return DEFINED_FUNC (1) - DEFINED_FUNC_2 (-1);
}