Index: src/gdb-jit.h |
diff --git a/src/gdb-jit.h b/src/gdb-jit.h |
index 0c80fb65b759527faca15d40a7cafb7a2a8c2c99..2cf15bc61d6417f1519f65f4308e8ce644608c81 100644 |
--- a/src/gdb-jit.h |
+++ b/src/gdb-jit.h |
@@ -43,6 +43,8 @@ |
namespace v8 { |
namespace internal { |
+class CompilationInfo; |
+ |
#define CODE_TAGS_LIST(V) \ |
V(LOAD_IC) \ |
V(KEYED_LOAD_IC) \ |
@@ -113,11 +115,13 @@ class GDBJITInterface: public AllStatic { |
static void AddCode(const char* name, |
Code* code, |
CodeTag tag, |
- Script* script = NULL); |
+ Script* script, |
+ CompilationInfo* info); |
static void AddCode(Handle<String> name, |
Handle<Script> script, |
- Handle<Code> code); |
+ Handle<Code> code, |
+ CompilationInfo* info); |
static void AddCode(CodeTag tag, String* name, Code* code); |