Home | History | Annotate | Download | only in Utils

Lines Matching refs:PrintF

1345     if (FormatStr.empty())  // Tolerate printf's declared void.
1349 // Do not do any of the following transformations if the printf return value
1350 // is used, in general the printf return value is not compatible with either
1355 // printf("x") -> putchar('x'), even for '%'.
1362 // printf("foo\n") --> puts("foo")
1376 // printf("%c", chr) --> putchar(chr)
1385 // printf("%s\n", str) --> puts(str)
1405 // printf(format, ...) -> iprintf(format, ...) if no floating point
1753 static PrintFOpt PrintF;
1850 case LibFunc::printf:
1851 return &PrintF;