diff options
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 4 |
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 { |

