diff options
author | Eli Bendersky <eliben@google.com> | 2013-07-24 21:22:01 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-07-24 21:22:01 +0000 |
commit | c3496b0643a3bd0c5b6ceb1b450202a8325a3801 (patch) | |
tree | fb05ae2dd92a9f16838e1bcd581869f949478470 /clang/lib/CodeGen/TargetInfo.cpp | |
parent | 7aa54577d1b3b70a9a56f552ac35ffc4819821c5 (diff) | |
download | bcm5719-llvm-c3496b0643a3bd0c5b6ceb1b450202a8325a3801.tar.gz bcm5719-llvm-c3496b0643a3bd0c5b6ceb1b450202a8325a3801.zip |
Partial revert of r185568.
r186899 and r187061 added a preferred way for some architectures not to get
intrinsic generation for math builtins. So the code changes in r185568 can
now be undone (the test remains).
llvm-svn: 187079
Diffstat (limited to 'clang/lib/CodeGen/TargetInfo.cpp')
-rw-r--r-- | clang/lib/CodeGen/TargetInfo.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp index a8861cf4500..183aefe00cd 100644 --- a/clang/lib/CodeGen/TargetInfo.cpp +++ b/clang/lib/CodeGen/TargetInfo.cpp @@ -443,10 +443,6 @@ class PNaClTargetCodeGenInfo : public TargetCodeGenInfo { public: PNaClTargetCodeGenInfo(CodeGen::CodeGenTypes &CGT) : TargetCodeGenInfo(new PNaClABIInfo(CGT)) {} - - /// For PNaCl we don't want llvm.pow.* intrinsics to be emitted instead - /// of library function calls. - bool emitIntrinsicForPow() const { return false; } }; void PNaClABIInfo::computeInfo(CGFunctionInfo &FI) const { |