[llvm] r304624 - [CodeGen] Fix Windows builds broken in r304621.

Eugene Zelenko via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 2 17:39:36 PDT 2017


Author: eugenezelenko
Date: Fri Jun  2 19:39:36 2017
New Revision: 304624

URL: http://llvm.org/viewvc/llvm-project?rev=304624&view=rev
Log:
[CodeGen] Fix Windows builds broken in r304621.

Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=304624&r1=304623&r2=304624&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Fri Jun  2 19:39:36 2017
@@ -519,8 +519,8 @@ protected:
 
     uint16_t : NumLSBaseSDNodeBits;
 
-    bool IsTruncating : 1;
-    bool IsCompressing : 1;
+    uint16_t IsTruncating : 1;
+    uint16_t IsCompressing : 1;
   };
 
   union {




More information about the llvm-commits mailing list