diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-04-07 00:58:44 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-04-07 00:58:44 +0000 |
commit | 2c69f8eec6a51114799e3e80fa4903c5e3fc429c (patch) | |
tree | 9fa488c8ce9dc402a57a02b3616aefc007bc12b8 /include | |
parent | 1adb47cc11e708e6009007eeab58caf4310df30f (diff) | |
download | external_llvm-2c69f8eec6a51114799e3e80fa4903c5e3fc429c.zip external_llvm-2c69f8eec6a51114799e3e80fa4903c5e3fc429c.tar.gz external_llvm-2c69f8eec6a51114799e3e80fa4903c5e3fc429c.tar.bz2 |
Change -arm-divmod-libcall to a target neutral option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129045 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 97ceffd..fc80a06 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -157,6 +157,10 @@ namespace llvm { /// wth earlier copy coalescing. extern bool StrongPHIElim; + /// HasDivModLibcall - This flag indicates whether the target compiler + /// runtime library has integer divmod libcalls. + extern bool HasDivModLibcall; + } // End llvm namespace #endif |