aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-18 19:26:42 +0000
committerChris Lattner <sabre@nondot.org>2009-02-18 19:26:42 +0000
commit443e53c7845f01c8ed693ccd137abb0bd76564f6 (patch)
tree7e9e623cfa992aeb89817eb93cbb95faf2102fa1 /lib/CodeGen/CodeGenModule.cpp
parent719e61573f27c11057ecfe0dd8f141621602c571 (diff)
final string diagnostic issue (that I know about):
we used to not account for escapes in strings with string concat. Before: t.m:5:20: warning: field width should have type 'int', but argument has type 'unsigned int' printf("\n\n" "\n\n%*d", (unsigned) 1, 1); ^ ~~~~~~~~~~~~ after: t.m:5:23: warning: field width should have type 'int', but argument has type 'unsigned int' printf("\n\n" "\n\n%*d", (unsigned) 1, 1); ^ ~~~~~~~~~~~~ git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
0 files changed, 0 insertions, 0 deletions