Index: src/ast/ast.cc |
diff --git a/src/ast/ast.cc b/src/ast/ast.cc |
index c0f6f9e9ad636ccb2fc867e3c6ab186fcdd3ca1d..e9c422e288343a7a740fd14ca585609fed3c67d7 100644 |
--- a/src/ast/ast.cc |
+++ b/src/ast/ast.cc |
@@ -713,18 +713,6 @@ bool CompareOperation::IsLiteralCompareNull(Expression** expr) { |
// ---------------------------------------------------------------------------- |
-// Inlining support |
- |
-bool Declaration::IsInlineable() const { |
- return proxy()->var()->IsStackAllocated(); |
-} |
- |
-bool FunctionDeclaration::IsInlineable() const { |
- return false; |
-} |
- |
- |
-// ---------------------------------------------------------------------------- |
// Recording of type feedback |
// TODO(rossberg): all RecordTypeFeedback functions should disappear |