blob: 06fc8f43855d6ed05e6cdc835dea43f0bb4a299b [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor0c6db942009-05-04 06:07:12 +00002
3class Base { };
4class Derived1 : public Base { };
5class Derived2 : public Base { };
6
7void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
8 if (b > d1)
9 return;
10 if (d1 <= b)
11 return;
12 if (b > d2)
13 return;
14 if (d1 >= d2) // expected-error{{comparison of distinct}}
15 return;
16}
17
18void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
19 if (b == d1)
20 return;
21 if (d1 == b)
22 return;
23 if (b != d2)
24 return;
25 if (d1 == d2) // expected-error{{comparison of distinct}}
26 return;
27}
Douglas Gregor20b3e992009-08-24 17:42:35 +000028
29// PR4691
30int ptrcmp1(void *a, int *b) {
31 return a < b;
32}
33int ptrcmp2(long *a, int *b) {
34 return a < b; // expected-error{{distinct}}
Daniel Dunbar4fcfde42009-11-08 01:45:36 +000035}
Sebastian Redla439e6f2009-11-16 21:03:45 +000036
37// PR5509 - Multi-level pointers
38int f2() {
39 typedef int *IntPtr;
40 typedef IntPtr *IntPtrPtr;
41 typedef IntPtr const *IntPtrConstPtr;
42 IntPtrConstPtr i = 0;
43 IntPtrPtr j = 0;
44 return i != j;
45}
Douglas Gregorb4a89992010-01-11 21:58:49 +000046
47// PR5763
48typedef double Matrix4[4][4];
49
50bool f(Matrix4 m1, const Matrix4 m2) {
51 return m1 != m2;
52}
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +000053
54// PR6346
55bool f1(bool b, void **p, const void **q) {
Chris Lattner58f9e132010-09-05 00:04:01 +000056 if (p == q) // expected-warning{{comparison of distinct pointer types ('void **' and 'const void **') uses non-standard composite pointer type 'const void *const *'}}
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +000057 return false;
58
Chris Lattner58f9e132010-09-05 00:04:01 +000059 return b? p : q; // expected-warning{{incompatible operand types ('void **' and 'const void **') use non-standard composite pointer type 'const void *const *'}}
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +000060}