summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/backend_options.h
diff options
context:
space:
mode:
author Logan Chien <loganchien@google.com> 2012-06-26 17:37:11 +0800
committer Shih-wei Liao <sliao@google.com> 2012-06-26 04:05:32 -0700
commit147440427984816b6ed5235a9b1fb2cbf99496d0 (patch)
tree9056b0636c62ce39d9507b06fe4ec99e105d3cdf /src/compiler_llvm/backend_options.h
parent7362667737b4aa4143141f284695b83641d5cd81 (diff)
Enable arm-long-calls.
We need -arm-long-calls for the Oat linker before more advanced linker has been implemented. Change-Id: I6f598427576e152a16c55e716f08232553e76614
Diffstat (limited to 'src/compiler_llvm/backend_options.h')
-rw-r--r--src/compiler_llvm/backend_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_llvm/backend_options.h b/src/compiler_llvm/backend_options.h
index f8295d1a86..bccf8a3e07 100644
--- a/src/compiler_llvm/backend_options.h
+++ b/src/compiler_llvm/backend_options.h
@@ -24,7 +24,7 @@ extern llvm::cl::opt<bool> EnableARMLongCalls; \
extern llvm::cl::opt<bool> ReserveR9;
#define INITIAL_ARM_BACKEND_OPTIONS \
-EnableARMLongCalls = false; \
+EnableARMLongCalls = true; \
ReserveR9 = true;
#define DECLARE_X86_BACKEND_OPTIONS