Skip to content

Commit 2c66b55

Browse files
committed
Fix typo.
1 parent 4446eb0 commit 2c66b55

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1961,7 +1961,7 @@ public void fcvtnVV(ElementSize srcESize, Register dst, Register src) {
19611961
}
19621962

19631963
/**
1964-
* C7.2.90 Floating-point convert to to signed integer, rounding toward zero.<br>
1964+
* C7.2.90 Floating-point convert to signed integer, rounding toward zero.<br>
19651965
*
19661966
* @param size register size.
19671967
* @param eSize source element size. Must be ElementSize.Word or ElementSize.DoubleWord.

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/nodes/spi/Replacements.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -95,9 +95,9 @@ StructuredGraph getSnippet(ResolvedJavaMethod method, ResolvedJavaMethod recursi
9595
void registerSnippet(ResolvedJavaMethod method, ResolvedJavaMethod original, Object receiver, boolean trackNodeSourcePosition, OptionValues options);
9696

9797
/**
98-
* Marks a plugin as conditionally applied. In the contenxt of libgraal conditional plugins
99-
* can't be used in during graph encoding for snippets and method substitutions and this is used
100-
* to detect violations of this restriction.
98+
* Marks a plugin as conditionally applied. In the context of libgraal conditional plugins can't
99+
* be used during graph encoding for snippets and in method substitutions, and this is used to
100+
* detect violations of this restriction.
101101
*/
102102
void registerConditionalPlugin(InvocationPlugin plugin);
103103

0 commit comments

Comments
 (0)