[Format] Fix incorrect pointer detection
https://llvm.org/PR50429 Before: void f() { f(float(1), a *a); } After: void f() { f(float(1), a * a); } Signed-off-by:Yilong Guo <yilong.guo@intel.com> Reviewed By: HazardyKnusperkeks, curdeius Differential Revision: https://reviews.llvm.org/D103589
Loading
Please sign in to comment