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

Unified Diff: test/mjsunit/regress/regress-regexp-nocase.js

Issue 392403002: ARM64: always restore regexp register cache after a C function call. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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/arm64/regexp-macro-assembler-arm64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-regexp-nocase.js
diff --git a/test/mjsunit/regress/regress-352059.js b/test/mjsunit/regress/regress-regexp-nocase.js
similarity index 95%
copy from test/mjsunit/regress/regress-352059.js
copy to test/mjsunit/regress/regress-regexp-nocase.js
index cd1a4c28f77f40e3932b4dd860c803915b25b375..27637da0913701642fa3af097b83d383b41c0fb5 100644
--- a/test/mjsunit/regress/regress-352059.js
+++ b/test/mjsunit/regress/regress-regexp-nocase.js
@@ -25,11 +25,6 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-var foo = false;
+var s = "('')x\nx\uF670";
-function bar() {
- foo = 2;
- return 4 % foo;
-}
-
-bar();
+assertEquals(s.match(/\((').*\1\)/i), ["('')", "'"]);
« no previous file with comments | « src/arm64/regexp-macro-assembler-arm64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698