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 | 5152be292ac0ac686aa2891fd2e6f596a946bc20 (patch) | |
tree | 52eda767068d9461a860f61285fe1e4067c4710c /llvm | |
parent | 202011fcc7b3f0d545730e27b49ce2aa0079699f (diff) | |
download | bcm5719-llvm-5152be292ac0ac686aa2891fd2e6f596a946bc20.tar.gz bcm5719-llvm-5152be292ac0ac686aa2891fd2e6f596a946bc20.zip |
alignment
llvm-svn: 20028
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp index 216b30e1171..348453bb4d8 100644 --- a/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp +++ b/llvm/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 |