Get reference to local bitmap array at specified index in the args list.
| 219 | |
| 220 | /// Get reference to local bitmap array at specified index in the args list. |
| 221 | llvm::Value* LLVMGenerator::GetLocalBitMapReference(llvm::Value* arg_bitmaps, int idx) { |
| 222 | llvm::Value* load = LoadVectorAtIndex(arg_bitmaps, types()->i64_type(), idx, ""); |
| 223 | return ir_builder()->CreateIntToPtr(load, types()->i64_ptr_type(), |
| 224 | std::to_string(idx) + "_lbmap"); |
| 225 | } |
| 226 | |
| 227 | /// \brief Generate code for one expression. |
| 228 |
nothing calls this directly
no test coverage detected