diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 22:43:08 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-04-21 22:43:08 +0000 |
commit | 91fb9ab60b6f769e13d528f66d2357bd461471b9 (patch) | |
tree | 59f9ed1a0e4f79e321618f17cf32f7d50bc01e3d /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 835702a094b0900a0b550f36a26df8ef7a15d3c7 (diff) | |
download | bcm5719-llvm-91fb9ab60b6f769e13d528f66d2357bd461471b9.tar.gz bcm5719-llvm-91fb9ab60b6f769e13d528f66d2357bd461471b9.zip |
* Remove trailing whitespace
* Convert tabs to spaces
llvm-svn: 21421
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 8af2361ebae..19ec64d0c13 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -1,10 +1,10 @@ //===-- Interpreter.h ------------------------------------------*- C++ -*--===// -// +// // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. -// +// //===----------------------------------------------------------------------===// // // This header file defines the interpreter structure @@ -123,7 +123,7 @@ public: /// freeMachineCodeForFunction - The interpreter does not generate any code. /// void freeMachineCodeForFunction(Function *F) { } - + // Methods used to execute code: // Place a call on the stack void callFunction(Function *F, const std::vector<GenericValue> &ArgVals); @@ -160,7 +160,7 @@ public: assert(0 && "Instruction not interpretable yet!"); } - GenericValue callExternalFunction(Function *F, + GenericValue callExternalFunction(Function *F, const std::vector<GenericValue> &ArgVals); void exitCalled(GenericValue GV); @@ -181,7 +181,7 @@ private: // Helper functions // SwitchToNewBasicBlock - Start execution in a new basic block and run any // PHI nodes in the top of the block. This is used for intraprocedural // control flow. - // + // void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF); void *getPointerToFunction(Function *F) { return (void*)F; } |