| 1152 | info.clobber(rscratch); |
| 1153 | } |
| 1154 | static void sendTranslateToStaticAddress(FILE *out, const InstrInfo *I, |
| 1155 | CallInfo &info, bool _static, int regno) |
| 1156 | { |
| 1157 | if (!_static || !info.pic) |
| 1158 | return; |
| 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 | { |
no test coverage detected