Reviewers: mtbrandyberry, Sven Panne,

Message:
Ok one more time.

Description:
Fix compile failure for AIX

Fix another may be uninitialized compile failure on AIX
in src/heap/heap.cc

[email protected], [email protected]

BUG=

Please review this at https://codereview.chromium.org/1153233004/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+1, -1 lines):
  M src/heap/heap.cc


Index: src/heap/heap.cc
diff --git a/src/heap/heap.cc b/src/heap/heap.cc
index 3b291d2916cd8228d645f619f779adff0b5e9419..7b65e8b81d450e9aec2021427f08a50da92ed884 100644
--- a/src/heap/heap.cc
+++ b/src/heap/heap.cc
@@ -4456,7 +4456,7 @@ AllocationResult Heap::AllocateConstantPoolArray(
   int size = ConstantPoolArray::SizeFor(small);
   AllocationSpace space = SelectSpace(size, TENURED);

-  HeapObject* object;
+  HeapObject* object = nullptr;
   {
     AllocationResult allocation =
         AllocateRaw(size, space, OLD_SPACE, kDoubleAligned);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to