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.cpp | |
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.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp index adb26aea64e..04b59c09770 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp @@ -1,10 +1,10 @@ //===- Interpreter.cpp - Top-Level LLVM Interpreter Implementation --------===// -// +// // 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 file implements the top-level functionality for the LLVM interpreter. @@ -50,7 +50,7 @@ ExecutionEngine *Interpreter::create(Module *M, IntrinsicLowering *IL) { // Interpreter::Interpreter(Module *M, bool isLittleEndian, bool isLongPointer, IntrinsicLowering *il) - : ExecutionEngine(M), ExitCode(0), + : ExecutionEngine(M), ExitCode(0), TD("lli", isLittleEndian, isLongPointer ? 8 : 4, isLongPointer ? 8 : 4, isLongPointer ? 8 : 4), IL(il) { @@ -92,13 +92,13 @@ GenericValue Interpreter::runFunction(Function *F, const unsigned ArgCount = F->getFunctionType()->getNumParams(); for (unsigned i = 0; i < ArgCount; ++i) ActualArgs.push_back(ArgValues[i]); - + // Set up the function call. callFunction(F, ActualArgs); // Start executing the function. run(); - + GenericValue rv; rv.IntVal = ExitCode; return rv; |