Initialize ShufBytes, as gcc 4.4 can't detect that the entire array is

initialized and a warning about a potentially unintialized variable is
generated.

llvm-svn: 79946
This commit is contained in:
Scott Michel 2009-08-24 21:53:27 +00:00
parent d749cbd9e2
commit b54075e7b8
1 changed files with 3 additions and 1 deletions

View File

@ -1963,7 +1963,9 @@ static SDValue LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
assert(prefslot_begin != -1 && prefslot_end != -1 &&
"LowerEXTRACT_VECTOR_ELT: preferred slots uninitialized");
unsigned int ShufBytes[16];
unsigned int ShufBytes[16] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};
for (int i = 0; i < 16; ++i) {
// zero fill uppper part of preferred slot, don't care about the
// other slots: