| 1846 | } |
| 1847 | |
| 1848 | int BfTypeInstance::GetSplatCount(bool force) |
| 1849 | { |
| 1850 | if (IsValuelessType()) |
| 1851 | return 0; |
| 1852 | if ((!mIsSplattable) && (!force)) |
| 1853 | return 1; |
| 1854 | int splatCount = 0; |
| 1855 | BfTypeUtils::SplatIterate([&](BfType* checkType) { splatCount++; }, this); |
| 1856 | return splatCount; |
| 1857 | } |
| 1858 | |
| 1859 | bool BfTypeInstance::IsCRepr() |
| 1860 | { |
no outgoing calls
no test coverage detected