| Index: src/factory.cc
|
| diff --git a/src/factory.cc b/src/factory.cc
|
| index d0e0b83f5605f0f00ff8964263768a3b5cac2b72..e2d46a39773055871c07ba4e39191b68f0957f14 100644
|
| --- a/src/factory.cc
|
| +++ b/src/factory.cc
|
| @@ -1051,6 +1051,14 @@ Handle<HeapNumber> Factory::NewHeapNumber(double value,
|
| }
|
|
|
|
|
| +Handle<Float32x4> Factory::NewFloat32x4(float w, float x, float y, float z,
|
| + PretenureFlag pretenure) {
|
| + CALL_HEAP_FUNCTION(
|
| + isolate(), isolate()->heap()->AllocateFloat32x4(w, x, y, z, pretenure),
|
| + Float32x4);
|
| +}
|
| +
|
| +
|
| Handle<Object> Factory::NewError(const char* maker,
|
| MessageTemplate::Template template_index,
|
| Handle<Object> arg0, Handle<Object> arg1,
|
|
|