From: Eugene Zelenko Date: Sat, 3 Jun 2017 00:39:36 +0000 (+0000) Subject: [CodeGen] Fix Windows builds broken in r304621. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=239d957e9eb0958df956294cfcf7697fd34f0e73;p=llvm [CodeGen] Fix Windows builds broken in r304621. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304624 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 5eedf283466..3a4feb32209 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -519,8 +519,8 @@ protected: uint16_t : NumLSBaseSDNodeBits; - bool IsTruncating : 1; - bool IsCompressing : 1; + uint16_t IsTruncating : 1; + uint16_t IsCompressing : 1; }; union {