forked from OSchip/llvm-project
[Hexagon] Fix uninitialized value caught with valgrind
Patch by Colin LeMahieu. llvm-svn: 301957
This commit is contained in:
parent
57a8bb4343
commit
fca6fae463
|
@ -36,7 +36,7 @@ class HexagonPacketizerList : public VLIWPacketizerList {
|
|||
|
||||
// Set to true if the packet contains an instruction that stalls with an
|
||||
// instruction from the previous packet.
|
||||
bool PacketStalls;
|
||||
bool PacketStalls = false;
|
||||
|
||||
protected:
|
||||
/// \brief A handle to the branch probability pass.
|
||||
|
|
Loading…
Reference in New Issue