diff options
Diffstat (limited to 'results/scraper/launchpad-without-comments/1625987')
| -rw-r--r-- | results/scraper/launchpad-without-comments/1625987 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1625987 b/results/scraper/launchpad-without-comments/1625987 new file mode 100644 index 000000000..14c18dbac --- /dev/null +++ b/results/scraper/launchpad-without-comments/1625987 @@ -0,0 +1,11 @@ +target-arm/translate-a64.c:2028: possible coding error ? + +target-arm/translate-a64.c:2028:37: warning: ?: using integer constants in boolean context [-Wint-in-bool-context] + +Source code is + + bool iss_sf = opc == 0 ? 32 : 64; + +Maybe better code + + bool iss_sf = (opc == 0) ? 32 : 64; \ No newline at end of file |