repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
SemaObjCXX
/
function-pointer-void-star.mm
blob
7c8321538d6213eb519b52feed820b3f75e788b6
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
extern "C" id (*_dealloc)(id) ;
5
6
void foo() {
7
extern void *_original_dealloc;
8
if (_dealloc == _original_dealloc) { }
9
if (_dealloc != _original_dealloc) { }
10
}