| 308 | //----------------------------------------------------------------------------- |
| 309 | |
| 310 | IntegerLiteral* Int32(uint64_t value) |
| 311 | { |
| 312 | auto& ctx = GetGlobalAST(); |
| 313 | llvm::APInt v{32, value, true}; |
| 314 | |
| 315 | return IntegerLiteral::Create(ctx, v, ctx.IntTy, {}); |
| 316 | } |
| 317 | //----------------------------------------------------------------------------- |
| 318 | |
| 319 | MemberExpr* AccessMember(const Expr* expr, const ValueDecl* vd, bool isArrow) |
no outgoing calls
no test coverage detected