aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Execution.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-11-05 00:59:28 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-11-05 00:59:28 +0000
commit3636f4e0d68858cb7b521a90cb3235852301c2b3 (patch)
treef98ce71b57cf1d447db7ebcc72aaef51ad094bdf /lib/ExecutionEngine/Interpreter/Execution.cpp
parentad5b4fb6b73990bfab5f84fe08c6f262c39f10bb (diff)
Remove a comment which no longer applies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Execution.cpp')
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index a17093ac86..66b8b54140 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -815,11 +815,6 @@ void Interpreter::callFunction(Function *F,
return;
}
- // Process the function, assigning instruction numbers to the instructions in
- // the function. Also calculate the number of values for each type slot
- // active.
- //
-
// Make a new stack frame... and fill it in.
ECStack.push_back(ExecutionContext());
ExecutionContext &StackFrame = ECStack.back();