Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: tests_lit/parse_errs/fcn-bad-param-type.ll

Issue 1579203002: Fix bitcode parser to check type signatures of functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Commit patch. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/parse_errs/call-fcn-bad-return-type.ll ('k') | tests_lit/parse_errs/nacl-fake-intrinsic.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/parse_errs/fcn-bad-param-type.ll
diff --git a/tests_lit/parse_errs/call-fcn-bad-param-type.ll b/tests_lit/parse_errs/fcn-bad-param-type.ll
similarity index 88%
copy from tests_lit/parse_errs/call-fcn-bad-param-type.ll
copy to tests_lit/parse_errs/fcn-bad-param-type.ll
index b7246e0b21c77f0ec7a295dc2542baf0be9b9032..a4faab2e8be2cc64bc9b7df1df7c5d8ba3c18b44 100644
--- a/tests_lit/parse_errs/call-fcn-bad-param-type.ll
+++ b/tests_lit/parse_errs/fcn-bad-param-type.ll
@@ -7,10 +7,10 @@
; RUN: -allow-externally-defined-symbols | FileCheck %s
declare void @f(i8);
+; CHECK: Invalid type signature for f: void (i8)
define void @Test() {
entry:
call void @f(i8 1)
-; CHECK: Argument 1 of f has invalid type: i8
ret void
}
« no previous file with comments | « tests_lit/parse_errs/call-fcn-bad-return-type.ll ('k') | tests_lit/parse_errs/nacl-fake-intrinsic.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698