Interpreter: kill some dead code

Remove commented out code and an unnecessary associated scope.  No functional
change.

llvm-svn: 210882
This commit is contained in:
Saleem Abdulrasool 2014-06-13 03:30:47 +00:00
parent e014729d34
commit 6ae82a66ac
1 changed files with 1 additions and 4 deletions

View File

@ -1047,10 +1047,7 @@ ScriptInterpreterPython::ExecuteMultipleLines (const char *in_string, const Exec
PyCodeObject *compiled_code = PyNode_Compile (compiled_node, "temp.py");
if (compiled_code)
{
{ // scope for PythonInputReaderManager
//PythonInputReaderManager py_input(options.GetEnableIO() ? this : NULL);
return_value.Reset(PyEval_EvalCode (compiled_code, globals.get(), locals.get()));
}
return_value.Reset(PyEval_EvalCode (compiled_code, globals.get(), locals.get()));
}
}
}