blob: f33f60de9fdd4e36273c479b4ff356ece68de07e [file] [log] [blame]
Ted Kremenekc39a2b02012-10-30 05:28:33 +00001// RUN: %clang_cc1 -fsyntax-only -Wno-compare-distinct-pointer-types -verify %s
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00002// expected-no-diagnostics
Fariborz Jahanianbea52da2012-10-17 23:19:22 +00003// rdar://12501960
4
5void Foo(int **thing, const int **thingMax)
6{
7 if ((thing + 3) > thingMax)
8 return;
9}