Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Lexer / minimize_source_to_dependency_directives_include.c
blob678753dd4559acbf94e970e8d35c3d95de09ca15
1 // Test double slashes in #include directive along with angle brackets. Previously, this was interpreted as comments.
2 // RUN: %clang_cc1 -DTEST -print-dependency-directives-minimized-source %s 2>&1 | FileCheck %s
4 #include "a//b.h"
5 #include <a//b.h>
7 // CHECK: #include "a//b.h"
8 // CHECK: #include <a//b.h>