blob: 6adc2283453fc3007bf17bd15cf0e25a8cb9bc5d [file] [log] [blame]
Chris Lattner4045a8a2007-10-11 00:18:28 +00001// RUN: clang -fsyntax-only -verify %s
Ted Kremenekec761af2007-08-29 18:06:12 +00002
3int foo(float x, float y) {
4 return x == y; // expected-warning {{comparing floating point with ==}}
5}
6
7int bar(float x, float y) {
8 return x != y; // expected-warning {{comparing floating point with ==}}
Ted Kremenek56b70862007-09-26 20:14:22 +00009}