Skip to content

Commit

Permalink
[CodeGen] Fix Windows builds broken in r304621.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304624 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
EugeneZelenko committed Jun 3, 2017
1 parent a5be24d commit 239d957
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/llvm/CodeGen/SelectionDAGNodes.h
Original file line number Diff line number Diff line change
@@ -519,8 +519,8 @@ class SDNode : public FoldingSetNode, public ilist_node<SDNode> {

uint16_t : NumLSBaseSDNodeBits;

bool IsTruncating : 1;
bool IsCompressing : 1;
uint16_t IsTruncating : 1;
uint16_t IsCompressing : 1;
};

union {

0 comments on commit 239d957

Please sign in to comment.