blob: c5171036400f35be84f6e1a6ab83a8e02f7d7301 [file] [log] [blame]
Argyrios Kyrtzidis452707c2010-11-05 22:10:18 +00001// Test this without pch.
2// RUN: %clang_cc1 %s -include %s -verify -fsyntax-only
3
4// Test with pch.
5// RUN: %clang_cc1 %s -emit-pch -o %t
6// RUN: %clang_cc1 %s -include-pch %t -verify -fsyntax-only
7
8#ifndef HEADER
9#define HEADER
10
11#pragma clang diagnostic ignored "-Wtautological-compare"
12
13#else
14
15void f() {
16 int b = b==b;
17}
18
19#endif