Chromium Code Reviews

Unified Diff: test/NaCl/X86/nacl-calls.ll

Issue 647443005: Change usage of naclcall and nacljmp pseudo-instructions to match x86 gas (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: remove NACL_call32d and auto-align bare call Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/NaCl/X86/nacl-calls.ll
diff --git a/test/NaCl/X86/nacl-calls.ll b/test/NaCl/X86/nacl-calls.ll
index 24ed67c66a39659123da34a7078b3354b812357e..45a92883b6e7ad2541385940d1dfa19e8260ea4f 100644
--- a/test/NaCl/X86/nacl-calls.ll
+++ b/test/NaCl/X86/nacl-calls.ll
@@ -15,7 +15,7 @@ entry:
ret i32 0
}
; NACL32-LABEL: call_address
-; NACL32: naclcall 66496
+; NACL32: calll 66496
; NACL32O0-LABEL: call_address
; NACL32O0: movl $66496, [[REG:%[a-z0-9]+]]
; NACL32O0: naclcall {{.*}}[[REG]]
@@ -54,15 +54,15 @@ define void @call_other_function2() {
ret void
}
; NACL32-LABEL: call_other_function
-; NACL32: naclcall other_function
+; NACL32: calll other_function
; NACL32-LABEL: call_other_function2
-; NACL32: naclcall call_other_function
+; NACL32: calll call_other_function
; NACL32O0-LABEL: call_other_function
-; NACL32O0: naclcall other_function
+; NACL32O0: calll other_function
; NACL64-LABEL: call_other_function
-; NACL64: naclcall other_function
+; NACL64: call other_function
; NACL64-LABEL: call_other_function2
-; NACL64: naclcall call_other_function
+; NACL64: call call_other_function
declare fastcc i32 @other_function_fast()

Powered by Google App Engine