repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
warn-self-comparisons.cpp
blob
2e8d130bcd5a0aa43fb6393334824151af57c096
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
void
f
(
int
(&
array1
)[
2
],
int
(&
array2
)[
2
]) {
5
if
(
array1
==
array2
) { }
// no warning
6
}