diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2012-05-09 18:24:23 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2012-05-09 18:24:23 +0000 |
commit | d9b41b339d3a8b35fac73e63ad665140b5bc7bdc (patch) | |
tree | 5a88618e974b22e9a598ce130b917410ac340148 /lib/Target/PowerPC/PPCJITInfo.cpp | |
parent | 537c2f5b2ae373a602b88789007ea75196795775 (diff) |
Mark .opd @progbits, thus avoiding a warning from asm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCJITInfo.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCJITInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCJITInfo.cpp b/lib/Target/PowerPC/PPCJITInfo.cpp index a6528c0d70..aba27399d6 100644 --- a/lib/Target/PowerPC/PPCJITInfo.cpp +++ b/lib/Target/PowerPC/PPCJITInfo.cpp @@ -210,7 +210,7 @@ asm( ".text\n" ".align 2\n" ".globl PPC64CompilationCallback\n" - ".section \".opd\",\"aw\"\n" + ".section \".opd\",\"aw\",@progbits\n" ".align 3\n" "PPC64CompilationCallback:\n" ".quad .L.PPC64CompilationCallback,.TOC.@tocbase,0\n" |