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 | a2af3f47ea24d6fa9f27bfb9698aba828d573859 (patch) | |
tree | 1125b9abd57d68f6d62bbbd03f0f1b0c22d6f14c /llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | |
parent | db9a95b77558350d9ff9e888a751044f1246a679 (diff) | |
download | bcm5719-llvm-a2af3f47ea24d6fa9f27bfb9698aba828d573859.tar.gz bcm5719-llvm-a2af3f47ea24d6fa9f27bfb9698aba828d573859.zip |
Add a pattern for i64 sra. Print 8-byte units with a space between the .quad
and the data
llvm-svn: 28934
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index 512a4cc3cfb..fd2d68d7c4a 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/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. |