Skip to content

Commit 2165969

Browse files
committed
Correct typo in architecture name.
1 parent 4477b98 commit 2165969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/image/NativeImageDebugInfoProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1871,7 +1871,7 @@ class ParamLocationProducer {
18711871

18721872
ParamLocationProducer(ResolvedJavaMethod method) {
18731873
Architecture arch = ConfigurationValues.getTarget().arch;
1874-
assert arch instanceof AMD64 || arch instanceof AMD64 : "unexpected architecture";
1874+
assert arch instanceof AMD64 || arch instanceof AArch64 : "unexpected architecture";
18751875
OS os = OS.getCurrent();
18761876
assert os == OS.LINUX || os == OS.WINDOWS : "unexpected os";
18771877
if (arch instanceof AArch64) {

0 commit comments

Comments
 (0)