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

Unified Diff: test/cctest/test-macro-assembler-x87.cc

Issue 293743005: Introduce x87 port (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: rebase Created 6 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
« no previous file with comments | « test/cctest/test-hashing.cc ('k') | test/cctest/test-regexp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-macro-assembler-x87.cc
diff --git a/test/cctest/test-macro-assembler-ia32.cc b/test/cctest/test-macro-assembler-x87.cc
similarity index 93%
copy from test/cctest/test-macro-assembler-ia32.cc
copy to test/cctest/test-macro-assembler-x87.cc
index 45af5571df0761d044fa16949028a05de3d6970b..bebc6cdd8321e5093812c3814b0cfaa8c77f3e2c 100644
--- a/test/cctest/test-macro-assembler-ia32.cc
+++ b/test/cctest/test-macro-assembler-x87.cc
@@ -123,20 +123,7 @@ TEST(LoadAndStoreWithRepresentation) {
__ j(not_equal, &exit);
// Test 5.
- __ mov(eax, Immediate(5)); // Test XMM move immediate.
- __ Move(xmm0, 0.0);
- __ Move(xmm1, 0.0);
- __ ucomisd(xmm0, xmm1);
- __ j(not_equal, &exit);
- __ Move(xmm2, 991.01);
- __ ucomisd(xmm0, xmm2);
- __ j(equal, &exit);
- __ Move(xmm0, 991.01);
- __ ucomisd(xmm0, xmm2);
- __ j(not_equal, &exit);
-
- // Test 6.
- __ mov(eax, Immediate(6));
+ __ mov(eax, Immediate(5));
__ Move(edx, Immediate(0)); // Test Move()
__ cmp(edx, Immediate(0));
__ j(not_equal, &exit);
« no previous file with comments | « test/cctest/test-hashing.cc ('k') | test/cctest/test-regexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698