No longer run atExit functions from run()

rename run to runFunction


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10609 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2003-12-26 06:13:05 +00:00
parent ff65e36be0
commit 2cab55d7e1
2 changed files with 6 additions and 10 deletions

View File

@@ -92,11 +92,10 @@ public:
Interpreter(Module *M, bool isLittleEndian, bool isLongPointer);
inline ~Interpreter() { }
/// runAtExitHandlers - Run any functions registered by the
/// program's calls to atexit(3), which we intercept and store in
/// AtExitHandlers.
/// runAtExitHandlers - Run any functions registered by the program's calls to
/// atexit(3), which we intercept and store in AtExitHandlers.
///
void runAtExitHandlers ();
void runAtExitHandlers();
/// create - Create an interpreter ExecutionEngine. This can never fail.
///
@@ -104,8 +103,8 @@ public:
/// run - Start execution with the specified function and arguments.
///
virtual GenericValue run(Function *F,
const std::vector<GenericValue> &ArgValues);
virtual GenericValue runFunction(Function *F,
const std::vector<GenericValue> &ArgValues);
/// recompileAndRelinkFunction - For the interpreter, functions are always
/// up-to-date.