Home | History | Annotate | Download | only in Scalar

Lines Matching defs:PrintF

1092 // 'printf' Optimizations
1103 if (FormatStr.empty()) // Tolerate printf's declared void.
1107 // Do not do any of the following transformations if the printf return value
1108 // is used, in general the printf return value is not compatible with either
1113 // printf("x") -> putchar('x'), even for '%'.
1120 // printf("foo\n") --> puts("foo")
1135 // printf("%c", chr) --> putchar(chr)
1144 // printf("%s\n", str) --> puts(str)
1165 // printf(format, ...) -> iprintf(format, ...) if no floating point
1465 SPrintFOpt SPrintF; PrintFOpt PrintF;
1584 Optimizations["printf"] = &PrintF;
2106 Name == "printf" ||