summaryrefslogtreecommitdiffstats
path: root/test/PCH/reloc.c
blob: 5d51eee05db3caa7290c18b66dcfbad9ec77c42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 --relocatable-pch -o %t \
// RUN:   -isysroot %S/libroot %S/libroot/usr/include/reloc.h
// RUN: %clang -ccc-host-triple x86_64-apple-darwin10 -fsyntax-only \
// RUN:   -include-pch %t -isysroot %S/libroot %s -Xclang -verify
// RUN: not %clang -ccc-host-triple x86_64-apple-darwin10 -include-pch %t %s

#include <reloc.h>

int x = 2; // expected-error{{redefinition}}
int y = 5; // expected-error{{redefinition}}


// expected-note{{previous definition}}
// expected-note{{previous definition}}