mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Add FSQRT, FSIN, FCOS nodes, patch contributed by Morten Ofstad
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21605 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1568,6 +1568,9 @@ const char *SDNode::getOperationName() const {
|
||||
// Unary operators
|
||||
case ISD::FABS: return "fabs";
|
||||
case ISD::FNEG: return "fneg";
|
||||
case ISD::FSQRT: return "fsqrt";
|
||||
case ISD::FSIN: return "fsin";
|
||||
case ISD::FCOS: return "fcos";
|
||||
|
||||
// Binary operators
|
||||
case ISD::ADD: return "add";
|
||||
@@ -1593,7 +1596,7 @@ const char *SDNode::getOperationName() const {
|
||||
case ISD::SRA_PARTS: return "sra_parts";
|
||||
case ISD::SRL_PARTS: return "srl_parts";
|
||||
|
||||
// Conversion operators.
|
||||
// Conversion operators.
|
||||
case ISD::SIGN_EXTEND: return "sign_extend";
|
||||
case ISD::ZERO_EXTEND: return "zero_extend";
|
||||
case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
|
||||
|
Reference in New Issue
Block a user