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

Unified Diff: tests_lit/llvm2ice_tests/commutativity.ll

Issue 1442753008: Reserve space for scalar FP returns in the stack frame (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add hyphen to comment Created 5 years, 1 month 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: tests_lit/llvm2ice_tests/commutativity.ll
diff --git a/tests_lit/llvm2ice_tests/commutativity.ll b/tests_lit/llvm2ice_tests/commutativity.ll
index cf5c6728456da020dca3c07cb281d030d96aaae3..5cafdb001a86f6b19620deeaa0ab2592d0043308 100644
--- a/tests_lit/llvm2ice_tests/commutativity.ll
+++ b/tests_lit/llvm2ice_tests/commutativity.ll
@@ -61,6 +61,7 @@ entry:
ret float %result
}
; CHECK-LABEL: floatAddLeft
+; CHECK-NEXT: sub esp,0xc
; CHECK-NEXT: movss xmm0,DWORD PTR
; CHECK-NEXT: movss xmm1,DWORD PTR
; CHECK-NEXT: addss xmm1,xmm0
@@ -73,6 +74,7 @@ entry:
ret float %result
}
; CHECK-LABEL: floatAddRight
+; CHECK-NEXT: sub esp,0xc
; CHECK-NEXT: movss xmm0,DWORD PTR
; CHECK-NEXT: movss xmm1,DWORD PTR
; CHECK-NEXT: addss xmm0,xmm1
@@ -85,6 +87,7 @@ entry:
ret float %result
}
; CHECK-LABEL: floatMultiplyLeft
+; CHECK-NEXT: sub esp,0xc
; CHECK-NEXT: movss xmm0,DWORD PTR
; CHECK-NEXT: movss xmm1,DWORD PTR
; CHECK-NEXT: mulss xmm1,xmm0
@@ -97,6 +100,7 @@ entry:
ret float %result
}
; CHECK-LABEL: floatMultiplyRight
+; CHECK-NEXT: sub esp,0xc
; CHECK-NEXT: movss xmm0,DWORD PTR
; CHECK-NEXT: movss xmm1,DWORD PTR
; CHECK-NEXT: mulss xmm0,xmm1

Powered by Google App Engine
This is Rietveld 408576698