inlined strcmp() on ppc64le (sometimes) returns a wrong value when the strings are same
Summary The issue at hand is an inlined strcmp() function on ppc64le architecture that sometimes returns a wrong value when comparing two identical strings. This problem occurs when the code is compiled with -O optimization using gcc (GCC) 11.2.1 20220127. The comparison involves two variables: a local character array and a memory-allocated variable. Root Cause … Read more