diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-12 02:00:43 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-12 02:00:43 +0000 |
commit | dd3fe94336ef3804a255c2f48db67abb824f812d (patch) | |
tree | 251925a4b9d9ef6d01888e9672345f64955d5550 /llvm/lib/Target/PowerPC/CMakeLists.txt | |
parent | 47bef1a8a2f5ef13fe97f6da3058d0704e83e1b7 (diff) | |
download | bcm5719-llvm-dd3fe94336ef3804a255c2f48db67abb824f812d.tar.gz bcm5719-llvm-dd3fe94336ef3804a255c2f48db67abb824f812d.zip |
The same situation that effected ARM effects PPC with regards to placing the
LSDA into the TEXT section. We need to generate non-lazy pointers to it on
Mach-O. However, the object the NLP points to may be local to the translation
unit. If so, then the NLP needs to have the value of that object specified
instead of "0", which the linker interprets as "external".
llvm-svn: 98325
Diffstat (limited to 'llvm/lib/Target/PowerPC/CMakeLists.txt')
-rw-r--r-- | llvm/lib/Target/PowerPC/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/CMakeLists.txt b/llvm/lib/Target/PowerPC/CMakeLists.txt index c997c5cfc7a..c86b9b9dd1c 100644 --- a/llvm/lib/Target/PowerPC/CMakeLists.txt +++ b/llvm/lib/Target/PowerPC/CMakeLists.txt @@ -24,6 +24,7 @@ add_llvm_target(PowerPCCodeGen PPCRegisterInfo.cpp PPCSubtarget.cpp PPCTargetMachine.cpp + PPCTargetObjectFile.cpp ) target_link_libraries (LLVMPowerPCCodeGen LLVMSelectionDAG) |