diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Alpha/AlphaAsmPrinter.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Target/Alpha/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AlphaAsmPrinter.cpp index 216b30e117..348453bb4d 100644 --- a/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/lib/Target/Alpha/AlphaAsmPrinter.cpp @@ -37,8 +37,10 @@ namespace { unsigned LabelNumber; AlphaAsmPrinter(std::ostream &o, TargetMachine &tm) - : AsmPrinter(o, tm), LabelNumber(0), AlignmentIsInBytes(false) - { } + : AsmPrinter(o, tm), LabelNumber(0) + { + AlignmentIsInBytes = false; + } /// We name each basic block in a Function with a unique number, so /// that we can consistently refer to them later. This is cleared |