Skip to content

Commit 6130d54

Browse files
danbevitaloacasas
authored andcommitted
deps: backport 8dde6ac from upstream V8
Commit 9c9e2d7 changed the name of TypeFeedbackVector to FeedbackVector but that commit did not update gdbinit. This applies the changed to gdbinit from upstream V8. Original commit message: [gdbinit] Rename TypeFeedback* to Feedback*. BUG= Change-Id: I1e32fdcf9edda57f5de329c8b694620a5da4558b Reviewed-on: https://chromium-review.googlesource.com/442444 Reviewed-by: Michael Stanton <[email protected]> Commit-Queue: Igor Sheludko <[email protected]> Cr-Commit-Position: refs/heads/master@{#43185} PR-URL: #12060 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 1ee38eb commit 6130d54

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

deps/v8/src/objects-printer.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1520,7 +1520,7 @@ extern void _v8_internal_Print_Code(void* object) {
15201520

15211521
extern void _v8_internal_Print_TypeFeedbackVector(void* object) {
15221522
if (reinterpret_cast<i::Object*>(object)->IsSmi()) {
1523-
printf("Not a type feedback vector\n");
1523+
printf("Not a feedback vector\n");
15241524
} else {
15251525
reinterpret_cast<i::TypeFeedbackVector*>(object)->Print();
15261526
}

deps/v8/tools/gdbinit

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ Print a v8 Code object from an internal code address
2020
Usage: jco pc
2121
end
2222

23-
# Print TypeFeedbackVector
23+
# Print FeedbackVector
2424
define jfv
25-
call _v8_internal_Print_TypeFeedbackVector((void*)($arg0))
25+
call _v8_internal_Print_FeedbackVector((void*)($arg0))
2626
end
2727
document jfv
28-
Print a v8 TypeFeedbackVector object
29-
Usage: jtv tagged_ptr
28+
Print a v8 FeedbackVector object
29+
Usage: jfv tagged_ptr
3030
end
3131

3232
# Print DescriptorArray.

0 commit comments

Comments
 (0)