rjmccall added inline comments.
Comment at: include/clang/AST/FormatString.h:70
AsShort, // 'h'
+AsInt,// 'hl' (OpenCL float/int vector element)
AsLong, // 'l'
I think giving this a weird name like `AsShortLong` might help make it
arsenm created this revision.
arsenm added reviewers: rjmccall, Anastasia.
Herald added subscribers: yaxunl, wdng.
This reverts commit r348083. This was based on misreading the spec for
printf specifiers. Start respecting the length modifier for vectors.
The warnings are still incomplete.