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

Unified Diff: test/NaCl/PNaClABI/abi-small-arguments.ll

Issue 221693002: PNaCl: Add support for GCC/LLVM vector extensions (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Address dschuff's comments. Created 6 years, 8 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
Index: test/NaCl/PNaClABI/abi-small-arguments.ll
diff --git a/test/NaCl/PNaClABI/abi-small-arguments.ll b/test/NaCl/PNaClABI/abi-small-arguments.ll
index c7b2a8bd9c2fa95a9d5923155cd9b8a791ea2597..696fac16b8c85e189198cc0efe02ddf026d00251 100644
--- a/test/NaCl/PNaClABI/abi-small-arguments.ll
+++ b/test/NaCl/PNaClABI/abi-small-arguments.ll
@@ -39,12 +39,12 @@ define void @bad_direct_calls() {
define void @bad_indirect_calls(i32 %ptr) {
%func1 = inttoptr i32 %ptr to void (i8)*
-; CHECK: bad result type: %func1
+; CHECK: bad result type: void (i8)* %func1
call void %func1(i8 0)
; CHECK: bad function callee operand: {{.*}} %func1
%func2 = inttoptr i32 %ptr to i16 ()*
-; CHECK: bad result type: %func2
+; CHECK: bad result type: i16 ()* %func2
%result3 = call i16 %func2()
; CHECK: bad function callee operand: {{.*}} %func2

Powered by Google App Engine
This is Rietveld 408576698