blob: 008bedf97769127931dea377e36ebf6b2110a376 [file] [log] [blame]
Ted Kremenek9b3d3a92007-08-29 18:06:12 +00001// RUN: clang -parse-ast-check %s
2
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 ==}}
9}