commit | 0d7b5e5d33330f55f41b159004653489b58e3ea4 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Feb 10 21:22:51 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Feb 10 21:22:51 2010 +0000 |
tree | 348881c8530d474854e4fcf6534481a88187bc7b | |
parent | 211746a69a8cc41ea7bafa74efbf7a94b2cfbad9 [diff] [blame] |
work around a gcc bug with -Wuninitialized. llvm-svn: 95808
diff --git a/llvm/utils/TableGen/CodeGenInstruction.h b/llvm/utils/TableGen/CodeGenInstruction.h index e81e7f4..285da14 100644 --- a/llvm/utils/TableGen/CodeGenInstruction.h +++ b/llvm/utils/TableGen/CodeGenInstruction.h
@@ -41,6 +41,7 @@ static ConstraintInfo getEarlyClobber() { ConstraintInfo I; I.Kind = EarlyClobber; + I.OtherTiedOperand = 0; return I; }