Revert "Place the code next to the use. Makes the use-def chain shorter."

This reverts commit 2acfd4d54cc6db3a450577a8882bdfeec80e20a9.
This commit is contained in:
Vassil Vassilev 2013-06-04 16:15:53 +02:00 committed by sftnight
parent 07b73f46dd
commit ba7c6596f8

View File

@ -83,14 +83,14 @@ namespace cling {
if (hasCodeGenerator())
getCodeGenerator()->Initialize(getCI()->getASTContext());
// pull in PCHs
const std::string& PCHFileName
= m_CI->getInvocation ().getPreprocessorOpts().ImplicitPCHInclude;
CompilationOptions CO;
CO.DeclarationExtraction = 0;
CO.ValuePrinting = CompilationOptions::VPDisabled;
CO.CodeGeneration = hasCodeGenerator();
// pull in PCHs
const std::string& PCHFileName
= m_CI->getInvocation ().getPreprocessorOpts().ImplicitPCHInclude;
if (!PCHFileName.empty()) {
Transaction* CurT = beginTransaction(CO);