| 1159 | sendTranslateAddress(out, I, info, /*neg=*/true, regno); |
| 1160 | } |
| 1161 | static void sendTranslateToDynamicAddress(FILE *out, const InstrInfo *I, |
| 1162 | CallInfo &info, bool _static, int regno) |
| 1163 | { |
| 1164 | if (_static || !info.pic) |
| 1165 | return; |
| 1166 | sendTranslateAddress(out, I, info, /*neg=*/false, regno); |
| 1167 | } |
| 1168 | |
| 1169 | /* |
| 1170 | * Emits instructions to load the jump/call/return target into the |
no test coverage detected