From: Chris Lattner Date: Tue, 6 Dec 2005 20:56:18 +0000 (+0000) Subject: Silence another annoying GCC warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=85961d5ec126bbc0c111d52dd7361d5159265ca5;p=oota-llvm.git Silence another annoying GCC warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24627 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 92593663020..8517bf7c9b3 100644 --- a/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -720,7 +720,7 @@ SDOperand PPCDAGToDAGISel::SelectSETCC(SDOperand Op) { // Force the ccreg into CR7. SDOperand CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32); - SDOperand InFlag; // Null incoming flag value. + SDOperand InFlag(0, 0); // Null incoming flag value. CCReg = CurDAG->getCopyToReg(CurDAG->getEntryNode(), CR7Reg, CCReg, InFlag).getValue(1);