diff options
author | Stefan Gränitz <stefan.graenitz@gmail.com> | 2024-05-30 15:17:27 +0200 |
---|---|---|
committer | Stefan Gränitz <stefan.graenitz@gmail.com> | 2024-05-30 17:03:21 +0200 |
commit | 647d2728c4dbc387521ce3984ebfda78ff2b031f (patch) | |
tree | dcda4be7243b0c67dbd4552bc3fd3832a134e9f7 /clang/unittests/Interpreter/InterpreterTest.cpp | |
parent | e8de977716e45f815edf98b0c7f53b87a1558e73 (diff) | |
download | llvm-647d2728c4dbc387521ce3984ebfda78ff2b031f.zip llvm-647d2728c4dbc387521ce3984ebfda78ff2b031f.tar.gz llvm-647d2728c4dbc387521ce3984ebfda78ff2b031f.tar.bz2 |
[clang-repl] Fix SetUp in CodeCompletionTest fixture (#93816)
And sort out some unused headers
Diffstat (limited to 'clang/unittests/Interpreter/InterpreterTest.cpp')
-rw-r--r-- | clang/unittests/Interpreter/InterpreterTest.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/clang/unittests/Interpreter/InterpreterTest.cpp b/clang/unittests/Interpreter/InterpreterTest.cpp index 3b07d6d1..ab9b7a3 100644 --- a/clang/unittests/Interpreter/InterpreterTest.cpp +++ b/clang/unittests/Interpreter/InterpreterTest.cpp @@ -12,21 +12,16 @@ #include "InterpreterTestFixture.h" -#include "clang/Interpreter/Interpreter.h" - #include "clang/AST/Decl.h" #include "clang/AST/DeclGroup.h" #include "clang/AST/Mangle.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/TextDiagnosticPrinter.h" +#include "clang/Interpreter/Interpreter.h" #include "clang/Interpreter/Value.h" #include "clang/Sema/Lookup.h" #include "clang/Sema/Sema.h" -#include "llvm/ExecutionEngine/Orc/LLJIT.h" -#include "llvm/Support/ManagedStatic.h" -#include "llvm/Support/TargetSelect.h" - #include "gmock/gmock.h" #include "gtest/gtest.h" |