| 53 | Beefy::BfCompiler* gBfCompiler = NULL; |
| 54 | |
| 55 | void pt(llvm::Type* t) |
| 56 | { |
| 57 | //Beefy::OutputDebugStrF("pv((llvm::Type*)%p)\n", t); |
| 58 | |
| 59 | Beefy::debug_ostream os; |
| 60 | t->print(os); |
| 61 | os << "\n"; |
| 62 | os << " isSized: " << t->isSized() << "\n"; |
| 63 | os.flush(); |
| 64 | |
| 65 | // if (auto pointerType = llvm::dyn_cast<llvm::PointerType>(t)) |
| 66 | // { |
| 67 | // Beefy::OutputDebugStrF("Element: "); |
| 68 | // pt(pointerType->getElementType()); |
| 69 | // } |
| 70 | } |
| 71 | |
| 72 | void ppt(llvm::Type* t) |
| 73 | { |
no test coverage detected