| 5765 | } |
| 5766 | |
| 5767 | BfMangler::MangleKind BfCompiler::GetMangleKind() |
| 5768 | { |
| 5769 | if (mOptions.mToolsetType == BfToolsetType_GNU) |
| 5770 | return BfMangler::MangleKind_GNU; |
| 5771 | return (mSystem->mPtrSize == 8) ? BfMangler::MangleKind_Microsoft_64 : BfMangler::MangleKind_Microsoft_32; |
| 5772 | } |
| 5773 | |
| 5774 | ////////////////////////////////////////////////////////////////////////// |
| 5775 |
no outgoing calls
no test coverage detected