diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-27 20:07:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-27 20:07:26 +0000 |
commit | e4172be9209a81a41cbea97b9307e368e7e3ea4c (patch) | |
tree | 5909f3b66a417b00e7835bc58181cd3e3f72d0a6 /lib/Target/PowerPC/PPCAsmPrinter.cpp | |
parent | 7ffa9abdadd7e51726240b6a8352abda8edde869 (diff) |
Add a pattern for i64 sra. Print 8-byte units with a space between the .quad
and the data
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28934 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index 512a4cc3cf..fd2d68d7c4 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -276,7 +276,7 @@ namespace { PrivateGlobalPrefix = "L"; // Marker for constant pool idxs ZeroDirective = "\t.space\t"; // ".space N" emits N zeros. if (isPPC64) - Data64bitsDirective = ".quad"; // we can't emit a 64-bit unit + Data64bitsDirective = ".quad\t"; // we can't emit a 64-bit unit else Data64bitsDirective = 0; // we can't emit a 64-bit unit AlignmentIsInBytes = false; // Alignment is by power of 2. |