| Index: src/hydrogen-bch.cc
|
| diff --git a/src/hydrogen-bch.cc b/src/hydrogen-bch.cc
|
| index 5af6030346a56a588d4a9a24b48fd55b1f1b0ac3..1bc78df2951f4849652743872d6eb9a21f0bb53e 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()) {
|
|
|