| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index f2d9c0a64e86ccacc1b2fb130f6b545925cb6da5..f65b0c262331447971500f7988b6b91651ba4858 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -3997,7 +3997,7 @@
|
|
|
|
|
| HInstruction* HStringAdd::New(Isolate* isolate, Zone* zone, HValue* context,
|
| - HValue* left, HValue* right,
|
| + HValue* left, HValue* right, Strength strength,
|
| PretenureFlag pretenure_flag,
|
| StringAddFlags flags,
|
| Handle<AllocationSite> allocation_site) {
|
| @@ -4015,8 +4015,8 @@
|
| }
|
| }
|
| }
|
| - return new (zone)
|
| - HStringAdd(context, left, right, pretenure_flag, flags, allocation_site);
|
| + return new (zone) HStringAdd(context, left, right, strength, pretenure_flag,
|
| + flags, allocation_site);
|
| }
|
|
|
|
|
|
|