| Index: src/hydrogen-bch.cc
|
| diff --git a/src/hydrogen-bch.cc b/src/hydrogen-bch.cc
|
| index 34216c66d32eed7658e8d1ac1be0c75a5f89b6c3..8dee7ac22d342b6e50632d5700b558bff21ac56a 100644
|
| --- a/src/hydrogen-bch.cc
|
| +++ b/src/hydrogen-bch.cc
|
| @@ -174,6 +174,9 @@ class InductionVariableBlocksTable BASE_EMBEDDED {
|
| return unsafe ? OPTIMISTICALLY_HOISTABLE : HOISTABLE;
|
| }
|
|
|
| +// Work around for GCC 4.4.6 at -O3 reporting
|
| +// warning: may be used uninitialized in this function
|
| +#pragma GCC diagnostic ignored "-Wuninitialized"
|
| explicit InductionVariableBlocksTable(HGraph* graph)
|
| : graph_(graph), loop_header_(NULL),
|
| elements_(graph->blocks()->length(), graph->zone()) {
|
|
|