Skip to content
Snippets Groups Projects
Commit a8b4b3d6 authored by Vassil Vassilev's avatar Vassil Vassilev
Browse files

remove the inclusion of CompilerInstance

git-svn-id: http://root.cern.ch/svn/root/trunk@46289 27541ba8-7e3a-0410-8455-c3a389f83636
parent d3cf03b4
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,6 @@
#include "cling/Utils/AST.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Sema/Lookup.h"
namespace cling {
......@@ -74,7 +73,7 @@ namespace cling {
// Only for demo resolve all unknown objects to cling::test::Tester
if (m_Enabled) {
if (!m_TesterDecl) {
clang::Sema& S = m_Interpreter->getCI()->getSema();
clang::Sema& S = m_Interpreter->getSema();
clang::NamespaceDecl* NSD = utils::Lookup::Namespace(&S, "cling");
NSD = utils::Lookup::Namespace(&S, "test", NSD);
m_TesterDecl = utils::Lookup::Named(&S, "Tester", NSD);
......
......@@ -5,7 +5,6 @@ extern "C" int printf(const char*,...);
#include "cling/Interpreter/Interpreter.h"
#include "cling/Utils/AST.h"
#include "clang/AST/Decl.h"
#include "clang/Frontend/CompilerInstance.h"
.rawInput
const char* comp(void* A, void* B) {
if (A == B) { return "equal"; }
......@@ -14,7 +13,7 @@ const char* comp(void* A, void* B) {
.rawInput
bool fromJIT = false;
clang::Sema& sema = gCling->getCI()->getSema();
clang::Sema& sema = gCling->getSema();
int gMyGlobal = 12;
void* addr1 = &gMyGlobal;
clang::NamedDecl* D = cling::utils::Lookup::Named(&sema, "gMyGlobal");
......
......@@ -8,10 +8,10 @@ extern "C" int cling_testlibrary_function();
#include "cling/Interpreter/Interpreter.h"
#include "cling/Interpreter/Value.h"
#include "cling/Interpreter/Callable.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Sema/Sema.h"
#include "clang/AST/ASTContext.h"
const clang::Decl* TU = gCling->getCI()->getASTContext().getTranslationUnitDecl();
const clang::Decl* TU = gCling->Sema().getASTContext().getTranslationUnitDecl();
const clang::FunctionDecl* F = gCling->lookupFunctionProto(TU, "cling_testlibrary_function", "");
assert(F && "cling_testlibrary_function() decl not found");
cling::Callable Call(*F, *gCling);
......
......@@ -5,7 +5,6 @@
#include "cling/Interpreter/LookupHelper.h"
#include "clang/AST/Expr.h"
#include "clang/Frontend/CompilerInstance.h"
#include "llvm/ADT/SmallVector.h"
......@@ -24,8 +23,8 @@ clang::PrintingPolicy Policy(G->getASTContext().getPrintingPolicy());
lookup.findArgList("a, a", exprs);
exprs[0]->dumpPretty(getCI()->getASTContext());
exprs[0]->dumpPretty(gCling->getSema().getASTContext());
//CHECK: a
exprs[1]->dumpPretty(getCI()->getASTContext());
exprs[1]->dumpPretty(gCling->getSema().getASTContext());
//CHECK: a
.q
......@@ -8,7 +8,7 @@
#include "cling/Utils/AST.h"
#include "clang/AST/Type.h"
#include "llvm/ADT/SmallSet.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Sema/Sema.h"
.rawInput 1
......@@ -50,7 +50,7 @@ namespace NS {
const cling::LookupHelper& lookup = gCling->getLookupHelper();
const clang::ASTContext& Ctx = gCling->getCI()->getASTContext();
const clang::ASTContext& Ctx = gCling->getSema().getASTContext();
llvm::SmallSet<const clang::Type*, 4> skip;
skip.insert(lookup.findType("Double32_t").getTypePtr());
const clang::Type* t = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment