From 53336baf2885f1704e7e7456b66f79f457132557 Mon Sep 17 00:00:00 2001 From: Eugene Zelenko Date: Sat, 3 Jun 2017 00:39:36 +0000 Subject: [PATCH] [CodeGen] Fix Windows builds broken in r304621. llvm-svn: 304624 --- include/llvm/CodeGen/SelectionDAGNodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {