diff options
Diffstat (limited to 'clang/test/Analysis/copypaste/false-positives.cpp')
| -rw-r--r-- | clang/test/Analysis/copypaste/false-positives.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/clang/test/Analysis/copypaste/false-positives.cpp b/clang/test/Analysis/copypaste/false-positives.cpp index 8d649c790b8..4c6275949da 100644 --- a/clang/test/Analysis/copypaste/false-positives.cpp +++ b/clang/test/Analysis/copypaste/false-positives.cpp @@ -12,14 +12,6 @@ int max(int a, int b) { // expected-warning{{Detected code clone.}} return b; } -// FIXME: Detect different binary operator kinds. -int min1(int a, int b) { // expected-note{{Related code clone is here.}} - log(); - if (a < b) - return a; - return b; -} - // FIXME: Detect different variable patterns. int min2(int a, int b) { // expected-note{{Related code clone is here.}} log(); |

