efriedma added a comment.

> vprintf is handled using the exact same code-paths. SO, it'll have its 2nd 
> parameter created with type 'char*&'

vprintf is defined in the C standard as "int vprintf(const char *format, 
va_list arg);"; on Windows, that's equivalent to "int vprintf(const char 
*format, char* arg);".  If a reference is showing up anywhere, something has 
gone seriously wrong before we get anywhere near the type merging code.


Repository:
  rC Clang

https://reviews.llvm.org/D45383



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to