| 3544 | } |
| 3545 | |
| 3546 | BeConstant* BeModule::GetConstant(BeType* type, double floatVal) |
| 3547 | { |
| 3548 | auto constant = mAlloc.Alloc<BeConstant>(); |
| 3549 | constant->mType = type; |
| 3550 | constant->mDouble = floatVal; |
| 3551 | return constant; |
| 3552 | } |
| 3553 | |
| 3554 | BeConstant* BeModule::GetConstant(BeType* type, int64 intVal) |
| 3555 | { |
no outgoing calls
no test coverage detected