Skip to content

Commit cadc1b8

Browse files
committed
Touchup comments
1 parent 3d2e9e1 commit cadc1b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/cpu/x86/templateTable_x86.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,7 +1033,7 @@ void TemplateTable::lastore() {
10331033
void TemplateTable::fastore() {
10341034
transition(ftos, vtos);
10351035
__ pop_i(rbx);
1036-
// value is in UseSSE >= 1 ? xmm0 : ST(0)
1036+
// value is in xmm0
10371037
// rbx: index
10381038
// rdx: array
10391039
index_check(rdx, rbx); // prefer index in rbx
@@ -1046,7 +1046,7 @@ void TemplateTable::fastore() {
10461046
void TemplateTable::dastore() {
10471047
transition(dtos, vtos);
10481048
__ pop_i(rbx);
1049-
// value is in UseSSE >= 2 ? xmm0 : ST(0)
1049+
// value is in xmm0
10501050
// rbx: index
10511051
// rdx: array
10521052
index_check(rdx, rbx); // prefer index in rbx

0 commit comments

Comments
 (0)