** Load a non-nullable string. */
| 128 | ** Load a non-nullable string. |
| 129 | */ |
| 130 | static TString *loadString (LoadState *S) { |
| 131 | TString *st = loadStringN(S); |
| 132 | if (st == NULL) |
| 133 | error(S, "bad format for constant string"); |
| 134 | return st; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | static void loadCode (LoadState *S, Proto *f) { |
no test coverage detected