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

Unified Diff: test/NaCl/PNaClABI/abi-varargs.ll

Issue 1151093004: Changes from 3.7 merge to files not in upstream (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: Created 5 years, 7 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-varargs.ll
diff --git a/test/NaCl/PNaClABI/abi-varargs.ll b/test/NaCl/PNaClABI/abi-varargs.ll
index 58e98c83251e434acce42e060a6f29faca6f181e..f2f55d9b87344f1da82af8d19be48052fcf17992 100644
--- a/test/NaCl/PNaClABI/abi-varargs.ll
+++ b/test/NaCl/PNaClABI/abi-varargs.ll
@@ -7,7 +7,7 @@ define void @varargs_func(i32 %arg, ...) {
define void @call_varargs_func(i32 %ptr) {
%ptr2 = inttoptr i32 %ptr to void (i32, ...)*
- call void (i32, ...)* %ptr2(i32 123)
+ call void (i32, ...) %ptr2(i32 123)
ret void
}
-; CHECK: Function call_varargs_func disallowed: bad function callee operand: call void (i32, ...)*
+; CHECK: Function call_varargs_func disallowed: bad function callee operand: call void (i32, ...)

Powered by Google App Engine
This is Rietveld 408576698