diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-04 14:09:38 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-02-04 14:09:38 +0000 |
commit | 440e688b8d064fcaf0e4b4647a695e2322c04f2e (patch) | |
tree | b35aba86fe27182d80059353a056ecc5219a64c7 | |
parent | 968a30eb8f60a869530c17eb24c5bd732e547f5d (diff) |
alignment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20028 91177308-0d34-0410-b5e6-96231b3b80d8
-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 |