From 440e688b8d064fcaf0e4b4647a695e2322c04f2e Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 4 Feb 2005 14:09:38 +0000 Subject: [PATCH] alignment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20028 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Alpha/AlphaAsmPrinter.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Target/Alpha/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AlphaAsmPrinter.cpp index 216b30e1171..348453bb4d8 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 -- 2.34.1