Skip to content

Commit 30b0c60

Browse files
author
Thomas Schatzl
committedMar 3, 2025
8350956: Fix repetitions of the word "the" in compiler component comments
Reviewed-by: rcastanedalo
1 parent 8b0468f commit 30b0c60

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎src/hotspot/cpu/arm/frame_arm.inline.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ inline void frame::init(intptr_t* sp, intptr_t* unextended_sp, intptr_t* fp, add
6262
if (original_pc != nullptr) {
6363
_pc = original_pc;
6464
assert(_cb->as_nmethod()->insts_contains_inclusive(_pc),
65-
"original PC must be in the main code section of the the compiled method (or must be immediately following it)");
65+
"original PC must be in the main code section of the compiled method (or must be immediately following it)");
6666
_deopt_state = is_deoptimized;
6767
} else {
6868
_deopt_state = not_deoptimized;

‎src/hotspot/share/opto/escape.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4472,7 +4472,7 @@ void ConnectionGraph::split_unique_types(GrowableArray<Node *> &alloc_worklist,
44724472
}
44734473
} else if (n->is_AddP()) {
44744474
if (has_reducible_merge_base(n->as_AddP(), reducible_merges)) {
4475-
// This AddP will go away when we reduce the the Phi
4475+
// This AddP will go away when we reduce the Phi
44764476
continue;
44774477
}
44784478
Node* addp_base = get_addp_base(n);

‎src/hotspot/share/opto/vectorization.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ class VLoopBody : public StackObj {
445445
// types (byte, char, short). In the C2 IR, their operations are
446446
// done with full int type with 4 byte precision (e.g. AddI, MulI).
447447
// Example: char a,b,c; a = (char)(b + c);
448-
// However, if we can prove the the upper bits are only truncated,
448+
// However, if we can prove the upper bits are only truncated,
449449
// and the lower bits for the narrower type computed correctly, we
450450
// can compute the operations in the narrower type directly (e.g we
451451
// perform the AddI or MulI with 1 or 2 bytes). This allows us to

0 commit comments

Comments
 (0)
Please sign in to comment.