We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fb20f commit 489fb9eCopy full SHA for 489fb9e
.github/workflows/base.yml
@@ -194,9 +194,15 @@ jobs:
194
- name: Check MSVC arm64
195
shell: powershell
196
run: |
197
- where cl ; where armasm64
+ where cl ; where cl64; where armasm64
198
cl
199
+ ml64
200
armasm64 -h
201
+ - name: test compiler(armasm64)
202
+ shell: powershell
203
+ run: |
204
+ armasm64 mlkem/src/native/aarch64/src/poly_reduce_asm_testing.S poly_reduce_asm_testing.obj
205
+ dir
206
quickcheck-windows-mingw-w64:
207
strategy:
208
fail-fast: false
mlkem/src/native/aarch64/src/poly_reduce_asm_testing.S
@@ -0,0 +1,5 @@
1
+.text
2
+.balign 4
3
+.global poly_reduce
4
+poly_reduce:
5
+ret
0 commit comments