Skip to content

Commit 8929bd4

Browse files
committed
Fix test
Fixes #1400
1 parent 3b1e2a9 commit 8929bd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/arch-riscv64-relax-j.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ EOF
88
cat <<EOF | $CC -o $t/b.o -c -xc - -O2 -march=rv64g
99
void g();
1010
void f() { g(); }
11-
int main() { f(0); }
11+
int main() { f(); }
1212
EOF
1313

1414
$CC -B. -march=rv64g -o $t/exe1 $t/a.o $t/b.o
@@ -23,7 +23,7 @@ EOF
2323
cat <<EOF | $CC -o $t/d.o -c -xc - -O2 -march=rv64gc
2424
void g();
2525
void f() { g(); }
26-
int main() { f(0); }
26+
int main() { f(); }
2727
EOF
2828

2929
$CC -B. -march=rv64g -o $t/exe2 $t/c.o $t/d.o

0 commit comments

Comments
 (0)