mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Fix an unitialized member variable that may have caused sporadic failures
for code that wasn't even in bundling mode. llvm-svn: 170793
This commit is contained in:
parent
e13a7de1ee
commit
b205b36a9a
@ -232,7 +232,8 @@ MCAssembler::MCAssembler(MCContext &Context_, MCAsmBackend &Backend_,
|
||||
MCCodeEmitter &Emitter_, MCObjectWriter &Writer_,
|
||||
raw_ostream &OS_)
|
||||
: Context(Context_), Backend(Backend_), Emitter(Emitter_), Writer(Writer_),
|
||||
OS(OS_), RelaxAll(false), NoExecStack(false), SubsectionsViaSymbols(false) {
|
||||
OS(OS_), BundleAlignSize(0), RelaxAll(false), NoExecStack(false),
|
||||
SubsectionsViaSymbols(false) {
|
||||
}
|
||||
|
||||
MCAssembler::~MCAssembler() {
|
||||
|
Loading…
Reference in New Issue
Block a user