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
This commit is contained in:
Chris Lattner
2006-06-27 20:07:26 +00:00
parent 7ffa9abdad
commit e4172be920
3 changed files with 7 additions and 4 deletions

View File

@ -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.