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

Unified Diff: test/NaCl/X86/nacl-calls.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/X86/nacl-calls.ll
diff --git a/test/NaCl/X86/nacl-calls.ll b/test/NaCl/X86/nacl-calls.ll
index 309e6298dac4a512060be35fcdee379efca4eb72..36ccb39c2163378e56488ee065eb0db4b913aff8 100644
--- a/test/NaCl/X86/nacl-calls.ll
+++ b/test/NaCl/X86/nacl-calls.ll
@@ -96,7 +96,7 @@ define fastcc i32 @tail_call_other_function2() {
; With a load.
define i32 @call_indirect() {
- %1 = load i32 (i32)** @fp, align 4
+ %1 = load i32 (i32)*, i32 (i32)** @fp, align 4
%call1 = call i32 %1(i32 10)
ret i32 %call1
}
@@ -111,7 +111,7 @@ define i32 @call_indirect() {
; NACL64: naclcall %{{.*}},%r15
define fastcc i32 @tail_call_indirect() {
- %1 = load i32 (i32)** @fp, align 4
+ %1 = load i32 (i32)*, i32 (i32)** @fp, align 4
%call1 = tail call fastcc i32 %1(i32 10)
ret i32 %call1
}

Powered by Google App Engine
This is Rietveld 408576698