diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-10-01 00:59:58 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-10-01 00:59:58 +0000 |
commit | 6158d8492cc021bb47caee6d4755135ef1d855a4 (patch) | |
tree | c48f3f5a1ed87fbf56ec9f1274f294666edf3d99 /include/llvm/Target | |
parent | 70695fee513447aff8ce063a1f183e05cafa486f (diff) | |
download | external_llvm-6158d8492cc021bb47caee6d4755135ef1d855a4.zip external_llvm-6158d8492cc021bb47caee6d4755135ef1d855a4.tar.gz external_llvm-6158d8492cc021bb47caee6d4755135ef1d855a4.tar.bz2 |
Implement the -fno-builtin option in the front-end, not in the back-end.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56900 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index cec7aa7..2f8758b 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1049,8 +1049,7 @@ public: SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, unsigned Align, - const Value *DstSV, uint64_t DstOff, - bool NoBuiltin = false) { + const Value *DstSV, uint64_t DstOff) { return SDValue(); } |