mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-13 20:16:04 +00:00

Before: if (int * a = &b) ... After: if (int *a = &b) ... Also changed all the existing tests to test the expressions in question both in a declaration and in an expression context. llvm-svn: 173256