Before: x = (STACK_OF(uint64_t)) & a;
After: x = (STACK_OF(uint64_t))&a;
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
I am a beginner to compiler, interesting in how to write Unit Test case for change so I ran it, but found difference with my expection.
You mentioned
Before: x = (STACK_OF(uint64_t)) & a;
After: x = (STACK_OF(uint64_t))&a;
Your input test data is identical with the expected data. Does this exactly you need? Attach with a screenshot for your reference.
Comment Actions
It previously would have reformatted that input to add the spaces, so using the expected value as an input works fine. This is what almost all tests in this file do.