Make these bool bitfields.
authorEric Christopher <echristo@gmail.com>
Thu, 22 May 2014 23:09:57 +0000 (23:09 +0000)
committerEric Christopher <echristo@gmail.com>
Thu, 22 May 2014 23:09:57 +0000 (23:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209481 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCTargetOptions.h

index b4f5a979720d04f805965f1bf30bbda43ad5069a..80cc8befb7a7a8cda30b158cda4bb5a558f61674 100644 (file)
@@ -22,13 +22,13 @@ public:
   /// Enables AddressSanitizer instrumentation at machine level.
   bool SanitizeAddress : 1;
 
-  unsigned MCRelaxAll : 1;
-  unsigned MCNoExecStack : 1;
-  unsigned MCSaveTempLabels : 1;
-  unsigned MCUseDwarfDirectory : 1;
-  unsigned ShowMCEncoding : 1;
-  unsigned ShowMCInst : 1;
-  unsigned AsmVerbose : 1;
+  bool MCRelaxAll : 1;
+  bool MCNoExecStack : 1;
+  bool MCSaveTempLabels : 1;
+  bool MCUseDwarfDirectory : 1;
+  bool ShowMCEncoding : 1;
+  bool ShowMCInst : 1;
+  bool AsmVerbose : 1;
   MCTargetOptions();
 };