Commit 75bbd19f authored by Daniel Bevenius's avatar Daniel Bevenius Committed by Commit Bot

Remove unused CodeAndVector struct

I could not find any usage of this struct and it is in the internal
namespace so I though it might be safe to remove it.

Bug: 
Change-Id: I85d605712ab1ab3218eb03ed4d3b5fc0e541e21a
Reviewed-on: https://chromium-review.googlesource.com/641270Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#47813}
parent 8cf4aafc
...@@ -526,13 +526,6 @@ class SharedFunctionInfo : public HeapObject { ...@@ -526,13 +526,6 @@ class SharedFunctionInfo : public HeapObject {
DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo); DISALLOW_IMPLICIT_CONSTRUCTORS(SharedFunctionInfo);
}; };
// Result of searching in an optimized code map of a SharedFunctionInfo. Note
// that both {code} and {vector} can be NULL to pass search result status.
struct CodeAndVector {
Code* code; // Cached optimized code.
FeedbackVector* vector; // Cached feedback vector.
};
// Printing support. // Printing support.
struct SourceCodeOf { struct SourceCodeOf {
explicit SourceCodeOf(SharedFunctionInfo* v, int max = -1) explicit SourceCodeOf(SharedFunctionInfo* v, int max = -1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment