summaryrefslogtreecommitdiff
path: root/test/opt/strip_debug_info_test.cpp
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2017-11-27 10:16:41 -0500
committerDiego Novillo <dnovillo@google.com>2017-11-27 14:31:49 -0500
commit83228137e16c0d7fe33eaceddf6f67115d45338f (patch)
treea1e2082ec253fe61242c8eeea91943e00a7270d2 /test/opt/strip_debug_info_test.cpp
parentd8b2013ecfd6603855752452bb3a280a7b515d2c (diff)
Re-format source tree - NFC.
Re-formatted the source tree with the command: $ /usr/bin/clang-format -style=file -i \ $(find include source tools test utils -name '*.cpp' -or -name '*.h') This required a fix to source/val/decoration.h. It was not including spirv.h, which broke builds when the #include headers were re-ordered by clang-format.
Diffstat (limited to 'test/opt/strip_debug_info_test.cpp')
-rw-r--r--test/opt/strip_debug_info_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/opt/strip_debug_info_test.cpp b/test/opt/strip_debug_info_test.cpp
index 8e6ee013..8cae51e9 100644
--- a/test/opt/strip_debug_info_test.cpp
+++ b/test/opt/strip_debug_info_test.cpp
@@ -76,7 +76,9 @@ using StripDebugInfoTest = PassTest<::testing::TestWithParam<const char*>>;
TEST_P(StripDebugInfoTest, Kind) {
std::vector<const char*> text = {
- "OpCapability Shader", "OpMemoryModel Logical GLSL450", GetParam(),
+ "OpCapability Shader",
+ "OpMemoryModel Logical GLSL450",
+ GetParam(),
};
SinglePassRunAndCheck<opt::StripDebugInfoPass>(JoinAllInsts(text),
JoinNonDebugInsts(text),