mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
Fix an unitialized member variable that may have caused sporadic failures
for code that wasn't even in bundling mode. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170793 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5e81633499
commit
bc87361d25
@ -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…
x
Reference in New Issue
Block a user