blob: b304c4bf8c35fe7b12701324dcc40b7c74fddff4 [file] [log] [blame]
Argyrios Kyrtzidisf41d3be2010-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() {
Chandler Carrutha7689ef2011-03-27 09:46:56 +000016 int a = 0;
17 int b = a==a;
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +000018}
19
20#endif