aboutsummaryrefslogtreecommitdiff
path: root/test/opt/pass_remove_duplicates_test.cpp
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2018-07-09 11:32:29 -0400
committerGitHub <noreply@github.com>2018-07-09 11:32:29 -0400
commite6b953361dd00181e7317eb0efa31fdf6802f79a (patch)
treeaa18af5ee2888ed930bffeb303b1844d69088230 /test/opt/pass_remove_duplicates_test.cpp
parent50312ca146dfc7d3ee59facb7d2f171b9ea4be51 (diff)
downloadspirv-tools-e6b953361dd00181e7317eb0efa31fdf6802f79a.tar.gz
Move the ir namespace to opt. (#1680)
This CL moves the files in opt/ to consistenly be under the opt:: namespace. This frees up the ir:: namespace so it can be used to make a shared ir represenation.
Diffstat (limited to 'test/opt/pass_remove_duplicates_test.cpp')
-rw-r--r--test/opt/pass_remove_duplicates_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/opt/pass_remove_duplicates_test.cpp b/test/opt/pass_remove_duplicates_test.cpp
index 84aa9f8f..c8b9bb7b 100644
--- a/test/opt/pass_remove_duplicates_test.cpp
+++ b/test/opt/pass_remove_duplicates_test.cpp
@@ -25,8 +25,8 @@
namespace {
-using spvtools::ir::Instruction;
-using spvtools::ir::IRContext;
+using spvtools::opt::IRContext;
+using spvtools::opt::Instruction;
using spvtools::opt::PassManager;
using spvtools::opt::RemoveDuplicatesPass;