Skip to content

Commit

Permalink
Correct typo in architecture name.
Browse files Browse the repository at this point in the history
  • Loading branch information
adinn committed May 9, 2022
1 parent 4477b98 commit 2165969
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1871,7 +1871,7 @@ class ParamLocationProducer {

ParamLocationProducer(ResolvedJavaMethod method) {
Architecture arch = ConfigurationValues.getTarget().arch;
assert arch instanceof AMD64 || arch instanceof AMD64 : "unexpected architecture";
assert arch instanceof AMD64 || arch instanceof AArch64 : "unexpected architecture";
OS os = OS.getCurrent();
assert os == OS.LINUX || os == OS.WINDOWS : "unexpected os";
if (arch instanceof AArch64) {
Expand Down

0 comments on commit 2165969

Please sign in to comment.