diff options
| author | 2012-06-26 17:37:11 +0800 | |
|---|---|---|
| committer | 2012-06-26 04:05:32 -0700 | |
| commit | 147440427984816b6ed5235a9b1fb2cbf99496d0 (patch) | |
| tree | 9056b0636c62ce39d9507b06fe4ec99e105d3cdf /src/compiler_llvm/backend_options.h | |
| parent | 7362667737b4aa4143141f284695b83641d5cd81 (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.h | 2 |
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 |