Fix error not reported if at least one other error expected. (#485)

* fix error not reported if at least one other error expected.

* Fixed unused extern crate error if wasm feature is not enabled.

* No longer reporting deref cycles multiple times.

* Fix filetest type_check.clif.

* Switched comparison order for perf.

* Fixed isa/riscv/verify-encoding.clif filetest.
This commit is contained in:
Grégoire Geis
2018-08-28 19:33:46 +02:00
committed by Dan Gohman
parent 9eee91fc12
commit 0e67255f52
5 changed files with 17 additions and 5 deletions

View File

@@ -82,6 +82,7 @@ function %jump_args() {
v0 = iconst.i16 10
v3 = iconst.i64 20
jump ebb1(v0, v3) ; error: arg 0 (v0) has type i16, expected i64
; error: arg 1 (v3) has type i64, expected i16
ebb1(v10: i64, v11: i16):
return
}
@@ -91,6 +92,7 @@ function %jump_args2() {
v0 = iconst.i16 10
v3 = iconst.i64 20
brz v0, ebb1(v0, v3) ; error: arg 0 (v0) has type i16, expected i64
; error: arg 1 (v3) has type i64, expected i16
jump ebb1(v3, v0)
ebb1(v10: i64, v11: i16):
return