2014-11-05
2014-11-05 17:03:41 by Martin Nilsson <nilsson@opera.com>
-
0695b454d8977fb692782d0169a10f7cc09b36c8
(5 lines)
(+5/-0)
[
Show
| Annotate
]
Branch: 8.1
Address some warnings.
253: Inside #if defined(PIKE_PORTABLE_BYTECODE)
if (c[e].line != previous_line) {
current_tripple[0] = F_LINE;
current_tripple[1] = c[e].line;
+ #if SIZEOF_INT_TYPE > 4
current_tripple[2] = c[e].line>>32;
-
+ #else
+ current_tripple[2] = 0;
+ #endif
current_tripple += 3;
previous_line = c[e].line;
}