| Index: src/codegen.cc | 
| diff --git a/src/codegen.cc b/src/codegen.cc | 
| index b42645cd006c83f2045eb931367c4d45ff5bb920..2eebef663cfcd8d2eb443f2d054b18a69f1db940 100644 | 
| --- a/src/codegen.cc | 
| +++ b/src/codegen.cc | 
| @@ -86,12 +86,12 @@ void CodeGenerator::MakeCodePrologue(CompilationInfo* info) { | 
| PrintF(" ***\n"); | 
| } | 
|  | 
| -  if (!info->IsStub() && print_source) { | 
| +  if (print_source) { | 
| PrintF("--- Source from AST ---\n%s\n", | 
| PrettyPrinter().PrintProgram(info->function())); | 
| } | 
|  | 
| -  if (!info->IsStub() && print_ast) { | 
| +  if (print_ast) { | 
| PrintF("--- AST ---\n%s\n", | 
| AstPrinter().PrintProgram(info->function())); | 
| } | 
|  |