work around a gcc bug with -Wuninitialized.
authorChris Lattner <sabre@nondot.org>
Wed, 10 Feb 2010 21:22:51 +0000 (21:22 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 10 Feb 2010 21:22:51 +0000 (21:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95808 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/CodeGenInstruction.h

index e81e7f43bf3d4c9b890ce8c29b03c9d9c5462405..285da140087fd093a408615900d30a514385aa67 100644 (file)
@@ -41,6 +41,7 @@ namespace llvm {
       static ConstraintInfo getEarlyClobber() {
         ConstraintInfo I;
         I.Kind = EarlyClobber;
+        I.OtherTiedOperand = 0;
         return I;
       }