aboutsummaryrefslogtreecommitdiff
path: root/test/opt/def_use_test.cpp
diff options
context:
space:
mode:
authordan sinclair <dj2@everburning.com>2018-08-03 15:06:09 -0400
committerGitHub <noreply@github.com>2018-08-03 15:06:09 -0400
commiteda2cfbe128e5b71e9a0131f816ade5186ad6420 (patch)
tree3342879b183f8cb6af3659033bd54fc2f3d7b921 /test/opt/def_use_test.cpp
parent2d9a325264e3fc81317acc0a68a098f0546c352d (diff)
downloadspirv-tools-eda2cfbe128e5b71e9a0131f816ade5186ad6420.tar.gz
Cleanup includes. (#1795)
This Cl cleans up the include paths to be relative to the top level directory. Various include-what-you-use fixes have been added.
Diffstat (limited to 'test/opt/def_use_test.cpp')
-rw-r--r--test/opt/def_use_test.cpp23
1 files changed, 13 insertions, 10 deletions
diff --git a/test/opt/def_use_test.cpp b/test/opt/def_use_test.cpp
index 10a6382e..3b856ce7 100644
--- a/test/opt/def_use_test.cpp
+++ b/test/opt/def_use_test.cpp
@@ -13,18 +13,21 @@
// limitations under the License.
#include <memory>
+#include <string>
+#include <unordered_map>
#include <unordered_set>
-
-#include <gmock/gmock.h>
-#include <gtest/gtest.h>
-
-#include "opt/build_module.h"
-#include "opt/def_use_manager.h"
-#include "opt/ir_context.h"
-#include "opt/module.h"
-#include "pass_fixture.h"
-#include "pass_utils.h"
+#include <utility>
+#include <vector>
+
+#include "gmock/gmock.h"
+#include "gtest/gtest.h"
+#include "source/opt/build_module.h"
+#include "source/opt/def_use_manager.h"
+#include "source/opt/ir_context.h"
+#include "source/opt/module.h"
#include "spirv-tools/libspirv.hpp"
+#include "test/opt/pass_fixture.h"
+#include "test/opt/pass_utils.h"
namespace spvtools {
namespace opt {