Remove more redundant code

This commit is contained in:
Vassil Vassilev 2014-02-19 10:45:37 +01:00 committed by sftnight
parent 8b151c893e
commit 5120e219d5
2 changed files with 0 additions and 4 deletions

View File

@ -10,7 +10,6 @@
#include "ExecutionContext.h"
#include "clang/AST/Type.h"
#include "clang/AST/ASTContext.h"
#include "clang/Sema/Sema.h"
#include "llvm/IR/Constants.h"
@ -198,7 +197,6 @@ freeCallersOfUnresolvedSymbols(llvm::SmallVectorImpl<llvm::Function*>&
ExecutionContext::ExecutionResult
ExecutionContext::executeFunction(llvm::StringRef funcname,
clang::QualType retType,
StoredValueRef* returnValue)
{
// Call a function without arguments, or with an SRet argument, see SRet below

View File

@ -23,7 +23,6 @@ namespace llvm {
}
namespace clang {
class ASTContext;
class Decl;
class QualType;
}
@ -136,7 +135,6 @@ namespace cling {
void runStaticDestructorsOnce(llvm::Module* m);
ExecutionResult executeFunction(llvm::StringRef function,
clang::QualType retType,
StoredValueRef* returnValue = 0);
///\brief Adds a symbol (function) to the execution engine.