diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-01-23 07:47:02 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-01-23 07:47:02 +0000 |
| commit | b1301f7bceecfd74fd2d60f106288afc1e5c0f80 (patch) | |
| tree | 2927d1c3c704c4b8c165483bec21a33e77ecb569 /llvm/lib/Target/PowerPC | |
| parent | 76bdea32900ab533b0c059ec8b71fff59c919632 (diff) | |
| download | bcm5719-llvm-b1301f7bceecfd74fd2d60f106288afc1e5c0f80.tar.gz bcm5719-llvm-b1301f7bceecfd74fd2d60f106288afc1e5c0f80.zip | |
mcize lcomm, simplify .comm, extend both to support 64-bit sizes.
llvm-svn: 94299
Diffstat (limited to 'llvm/lib/Target/PowerPC')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp index ba9937b4c52..d2ff3b7827b 100644 --- a/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp @@ -52,7 +52,7 @@ PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { SetDirective = "\t.set"; Data64bitsDirective = is64Bit ? "\t.quad\t" : 0; AlignmentIsInBytes = false; - LCOMMDirective = "\t.lcomm\t"; + HasLCOMMDirective = true; AssemblerDialect = 0; // Old-Style mnemonics. } |

