diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-06-19 00:48:28 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-06-19 00:48:28 +0000 |
commit | d6b43a317e71246380db55a50b799b062b53cdce (patch) | |
tree | a9065fa111ae4ea7feb770a27353bf0673c985fe /tools | |
parent | f6fc855a00b57786a7a9132095165575a5e45312 (diff) | |
download | external_llvm-d6b43a317e71246380db55a50b799b062b53cdce.zip external_llvm-d6b43a317e71246380db55a50b799b062b53cdce.tar.gz external_llvm-d6b43a317e71246380db55a50b799b062b53cdce.tar.bz2 |
Move the support for using .init_array from ARM to the generic
TargetLoweringObjectFileELF. Use this to support it on X86. Unlike ARM,
on X86 it is not easy to find out if .init_array should be used or not, so
the decision is made via TargetOptions and defaults to off.
Add a command line option to llc that enables it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158692 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llc/llc.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index a99d0b7..d088091 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -244,6 +244,10 @@ SegmentedStacks("segmented-stacks", cl::desc("Use segmented stacks if possible."), cl::init(false)); +static cl::opt<bool> +UseInitArray("use-init-array", + cl::desc("Use .init_array instead of .ctors."), + cl::init(false)); // GetFileNameRoot - Helper function to get the basename of a filename. static inline std::string @@ -418,6 +422,7 @@ int main(int argc, char **argv) { Options.TrapFuncName = TrapFuncName; Options.PositionIndependentExecutable = EnablePIE; Options.EnableSegmentedStacks = SegmentedStacks; + Options.UseInitArray = UseInitArray; std::auto_ptr<TargetMachine> target(TheTarget->createTargetMachine(TheTriple.getTriple(), |