Skip to content

Commit

Permalink
Make these bool bitfields.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209481 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
echristo committed May 22, 2014
1 parent 8f33e4c commit ef518f1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions include/llvm/MC/MCTargetOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ class MCTargetOptions {
/// 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();
};

Expand Down

0 comments on commit ef518f1

Please sign in to comment.