map internal raw register to 'public' register
| 283 | |
| 284 | // map internal raw register to 'public' register |
| 285 | xcore_reg XCore_map_register(unsigned int r) |
| 286 | { |
| 287 | static const unsigned int map[] = { 0, |
| 288 | }; |
| 289 | |
| 290 | if (r < ARR_SIZE(map)) |
| 291 | return map[r]; |
| 292 | |
| 293 | // cannot find this register |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…