From fd09b7d9b54ccb4d737747ee7fba26f15f4901cd Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 12 Apr 2013 12:58:29 +0200 Subject: WTF/JSC update to r148273 This brings in various bug fixes in the ARM and MIPS assemblers as well as a Yarr crash fix and performance fix. This change doesn't compile as-is, but the next change will apply the modifications necessary to compile. That'll make future updates easier as it allows for cherry-picking because the modifications are usually always the same. Change-Id: Iac32f62c71e8ff908deb41f28f12fbc98c0823e1 Reviewed-by: Lars Knoll --- src/3rdparty/masm/create_regex_tables | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/3rdparty/masm/create_regex_tables') diff --git a/src/3rdparty/masm/create_regex_tables b/src/3rdparty/masm/create_regex_tables index bd799ba044..7544b75cd9 100644 --- a/src/3rdparty/masm/create_regex_tables +++ b/src/3rdparty/masm/create_regex_tables @@ -1,4 +1,4 @@ -# Copyright (C) 2010 Apple Inc. All rights reserved. +# Copyright (C) 2010, 2013 Apple Inc. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -90,11 +90,11 @@ for name, classes in types.items(): function += ("{\n") if emitTables and classes["UseTable"]: if "Inverse" in classes: - function += (" CharacterClass* characterClass = new CharacterClass(CharacterClassTable::create(_%sData, true));\n" % (classes["Inverse"])) + function += (" CharacterClass* characterClass = new CharacterClass(_%sData, true);\n" % (classes["Inverse"])) else: - function += (" CharacterClass* characterClass = new CharacterClass(CharacterClassTable::create(_%sData, false));\n" % (name)) + function += (" CharacterClass* characterClass = new CharacterClass(_%sData, false);\n" % (name)) else: - function += (" CharacterClass* characterClass = new CharacterClass(0);\n") + function += (" CharacterClass* characterClass = new CharacterClass;\n") for (min, max) in ranges: if (min == max): if (min > 127): -- cgit v1.2.3