mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
Add cbe support for powi
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30226 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6ddf8ed6fe
commit
1e14289ef9
@ -1693,6 +1693,8 @@ void CWriter::lowerIntrinsics(Function &F) {
|
||||
case Intrinsic::longjmp:
|
||||
case Intrinsic::prefetch:
|
||||
case Intrinsic::dbg_stoppoint:
|
||||
case Intrinsic::powi_f32:
|
||||
case Intrinsic::powi_f64:
|
||||
// We directly implement these intrinsics
|
||||
break;
|
||||
default:
|
||||
@ -1785,6 +1787,14 @@ void CWriter::visitCallInst(CallInst &I) {
|
||||
writeOperand(I.getOperand(1));
|
||||
Out << ')';
|
||||
return;
|
||||
case Intrinsic::powi_f32:
|
||||
case Intrinsic::powi_f64:
|
||||
Out << "__builtin_powi(";
|
||||
writeOperand(I.getOperand(1));
|
||||
Out << ", ";
|
||||
writeOperand(I.getOperand(2));
|
||||
Out << ')';
|
||||
return;
|
||||
case Intrinsic::setjmp:
|
||||
#if defined(HAVE__SETJMP) && defined(HAVE__LONGJMP)
|
||||
Out << "_"; // Use _setjmp on systems that support it!
|
||||
|
@ -1693,6 +1693,8 @@ void CWriter::lowerIntrinsics(Function &F) {
|
||||
case Intrinsic::longjmp:
|
||||
case Intrinsic::prefetch:
|
||||
case Intrinsic::dbg_stoppoint:
|
||||
case Intrinsic::powi_f32:
|
||||
case Intrinsic::powi_f64:
|
||||
// We directly implement these intrinsics
|
||||
break;
|
||||
default:
|
||||
@ -1785,6 +1787,14 @@ void CWriter::visitCallInst(CallInst &I) {
|
||||
writeOperand(I.getOperand(1));
|
||||
Out << ')';
|
||||
return;
|
||||
case Intrinsic::powi_f32:
|
||||
case Intrinsic::powi_f64:
|
||||
Out << "__builtin_powi(";
|
||||
writeOperand(I.getOperand(1));
|
||||
Out << ", ";
|
||||
writeOperand(I.getOperand(2));
|
||||
Out << ')';
|
||||
return;
|
||||
case Intrinsic::setjmp:
|
||||
#if defined(HAVE__SETJMP) && defined(HAVE__LONGJMP)
|
||||
Out << "_"; // Use _setjmp on systems that support it!
|
||||
|
Loading…
x
Reference in New Issue
Block a user