search for: fca940dd

Displaying 1 result from an estimated 1 matches for "fca940dd".

Did you mean: fc9640dd
2020 Jun 04
4
clang 10 -Wimplicit-fallthrough
...hrough... no checking if clang supports link flag -Wl,-z,retpolineplt... no Can anyone suggest a better solution? Annotating these points with a FALLTHROUGH macro would make more work keeping the code in sync and so is currently a non-starter. diff --git a/aclocal.m4 b/aclocal.m4 index 25ecc49a..fca940dd 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -21,6 +21,11 @@ int main(int argc, char **argv) { double m = l / 0.5; long long int n = argc * 12345LL, o = 12345LL * (long long int)argc; printf("%d %d %d %f %f %lld %lld\n", i, j, k, l, m, n, o); + switch(i){ + case 0: j += i; + /* FALL...