Compare commits

...

1 Commits

Author SHA1 Message Date
075ab32594 1
All checks were successful
/ build-images (push) Successful in 8s
/ run-tests (push) Successful in 6s
2026-03-18 19:52:08 +02:00

View File

@ -1,5 +1,5 @@
#!/bin/sh
for OPT in s 0 1 2 3; do
for OPT in s 0 2 3; do
echo -- "-O$OPT" && gcc f.c -O$OPT -o f && ./f
done