summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2017-06-03 00:39:36 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2017-06-03 00:39:36 +0000
commitba9020600083b8b38b5886749cfcab16aab082b9 (patch)
tree670f969f73a722e121f1ed081f63a19927843fff
parent5b74ff33e7a31c2939e978e1c5541883fb9cb25f (diff)
downloadbcm5719-llvm-ba9020600083b8b38b5886749cfcab16aab082b9.tar.gz
bcm5719-llvm-ba9020600083b8b38b5886749cfcab16aab082b9.zip
[CodeGen] Fix Windows builds broken in r304621.
llvm-svn: 304624
-rw-r--r--llvm/include/llvm/CodeGen/SelectionDAGNodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
index 5eedf283466..3a4feb32209 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/llvm/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 {
OpenPOWER on IntegriCloud