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

Unified Diff: test/cctest/test-assembler-arm.cc

Issue 1238973009: Revert of Version 4.4.63.20 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.4
Patch Set: Created 5 years, 5 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 | « src/compiler/arm/code-generator-arm.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-assembler-arm.cc
diff --git a/test/cctest/test-assembler-arm.cc b/test/cctest/test-assembler-arm.cc
index 059c04ad40efad92fbb0090d8dbe758016d9044a..cb8957799155128143d4548066ebef1037f66715 100644
--- a/test/cctest/test-assembler-arm.cc
+++ b/test/cctest/test-assembler-arm.cc
@@ -1981,63 +1981,4 @@
#undef CHECK_VRINT
}
}
-
-
-TEST(regress4292_b) {
- CcTest::InitializeVM();
- Isolate* isolate = CcTest::i_isolate();
- HandleScope scope(isolate);
-
- Assembler assm(isolate, NULL, 0);
- Label end;
- __ mov(r0, Operand(isolate->factory()->infinity_value()));
- for (int i = 0; i < 1020; ++i) {
- __ b(hi, &end);
- }
- __ bind(&end);
-}
-
-
-TEST(regress4292_bl) {
- CcTest::InitializeVM();
- Isolate* isolate = CcTest::i_isolate();
- HandleScope scope(isolate);
-
- Assembler assm(isolate, NULL, 0);
- Label end;
- __ mov(r0, Operand(isolate->factory()->infinity_value()));
- for (int i = 0; i < 1020; ++i) {
- __ bl(hi, &end);
- }
- __ bind(&end);
-}
-
-
-TEST(regress4292_blx) {
- CcTest::InitializeVM();
- Isolate* isolate = CcTest::i_isolate();
- HandleScope scope(isolate);
-
- Assembler assm(isolate, NULL, 0);
- Label end;
- __ mov(r0, Operand(isolate->factory()->infinity_value()));
- for (int i = 0; i < 1020; ++i) {
- __ blx(&end);
- }
- __ bind(&end);
-}
-
-
-TEST(regress4292_CheckConstPool) {
- CcTest::InitializeVM();
- Isolate* isolate = CcTest::i_isolate();
- HandleScope scope(isolate);
-
- Assembler assm(isolate, NULL, 0);
- __ mov(r0, Operand(isolate->factory()->infinity_value()));
- __ BlockConstPoolFor(1019);
- for (int i = 0; i < 1019; ++i) __ nop();
- __ vldr(d0, MemOperand(r0, 0));
-}
-
#undef __
« no previous file with comments | « src/compiler/arm/code-generator-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698