Skip to content

Commit fcee29b

Browse files
lewurmspaske00
authored andcommitted
[AArch64] Fix encoding for ENTVCT_EL0
1 parent e0c7a8e commit fcee29b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/asm/aarch64/AArch64Assembler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ public enum SystemRegister {
10691069
FPCR(0b11, 0b011, 0b0100, 0b0100, 0b000),
10701070
FPSR(0b11, 0b011, 0b0100, 0b0100, 0b001),
10711071
/* Counter-timer Virtual Count register */
1072-
CNTVCT_EL0(0b11, 0b011, 0b110, 0b0000, 0b010);
1072+
CNTVCT_EL0(0b11, 0b011, 0b1110, 0b0000, 0b010);
10731073

10741074
SystemRegister(int op0, int op1, int crn, int crm, int op2) {
10751075
this.op0 = op0;

0 commit comments

Comments
 (0)