summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-05-22 23:09:57 +0000
committerEric Christopher <echristo@gmail.com>2014-05-22 23:09:57 +0000
commitef518f1cbb7311808398b008e6628bcc995790b3 (patch)
treeda69875e6e5ff1d5579909ac86cd0877ea14fd89 /include
parent8f33e4c5e430764ffd95d4d0cf86ef8816e745b6 (diff)
downloadllvm-ef518f1cbb7311808398b008e6628bcc995790b3.tar.gz
llvm-ef518f1cbb7311808398b008e6628bcc995790b3.tar.bz2
llvm-ef518f1cbb7311808398b008e6628bcc995790b3.tar.xz
Make these bool bitfields.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCTargetOptions.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/MC/MCTargetOptions.h b/include/llvm/MC/MCTargetOptions.h
index b4f5a97972..80cc8befb7 100644
--- a/include/llvm/MC/MCTargetOptions.h
+++ b/include/llvm/MC/MCTargetOptions.h
@@ -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();
};