You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FIXME][clang][AArch64][PAC] Fix ptrauth-struct-attr CXX and ObjC tests
The CodeGenCXX/ptrauth-struct-attr.cpp and CodeGenObjC/ptrauth-struct-attr.m
had failures related to two things:
- Order of operations: if we need to apply op X to both var A and B, and
both X(A);X(B) and X(B);X(A) are correct, tests fails when an actual
order does not match the reference order even though both ones are
correct.
FIXME: Why do we see such non-deterministic behavior?
- Some substitution variables for FileCheck were not correct: they were
not defined in failing test cases, and definitions from previous test
cases were used.
0 commit comments