Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjCXX / debugger-support.mm
blobe8e382a1b3b2f837320af440973b151cf4c38644
1 // RUN: %clang_cc1 -fdebugger-support -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 @class NSString;
5 void testCompareAgainstPtr(int *ptr, NSString *ns) {
6   if (ptr == 17) {}
7   if (ns != 42) {}