summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-06-27 20:07:26 +0000
committerChris Lattner <sabre@nondot.org>2006-06-27 20:07:26 +0000
commita2af3f47ea24d6fa9f27bfb9698aba828d573859 (patch)
tree1125b9abd57d68f6d62bbbd03f0f1b0c22d6f14c /llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
parentdb9a95b77558350d9ff9e888a751044f1246a679 (diff)
downloadbcm5719-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.cpp2
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.
OpenPOWER on IntegriCloud