1
0
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:
Eli Bendersky 2012-12-20 22:51:52 +00:00
parent e13a7de1ee
commit b205b36a9a

View File

@ -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() {