From: Eric Christopher Date: Thu, 22 May 2014 23:09:57 +0000 (+0000) Subject: Make these bool bitfields. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=276d7a1434009086bb8491a58988e7818e27ecb3;p=platform%2Fupstream%2Fllvm.git Make these bool bitfields. llvm-svn: 209481 --- diff --git a/llvm/include/llvm/MC/MCTargetOptions.h b/llvm/include/llvm/MC/MCTargetOptions.h index b4f5a97..80cc8be 100644 --- a/llvm/include/llvm/MC/MCTargetOptions.h +++ b/llvm/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(); };