blob: 0c84da26b044e4dc8097d4875f9b80dcbc02ed67 [file] [log] [blame]
Ted Kremenek9f3d9422007-09-26 20:14:22 +00001// RUN: clang -parse-ast -verify %s
Ted Kremenek9b3d3a92007-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 Kremenek9f3d9422007-09-26 20:14:22 +00009}