aboutsummaryrefslogtreecommitdiff
path: root/clang/www
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2018-09-14 08:52:18 +0000
committerSylvestre Ledru <sylvestre@debian.org>2018-09-14 08:52:18 +0000
commit83406f54d96f5dd9c819749ca40f693034f0bda7 (patch)
tree262f900157a50370843e9b07bb60789e52c4ac7a /clang/www
parent7b84fd78478fa80ed10565da52db630ec50b26ee (diff)
gcc is now returning the same output on this example, removing this example
llvm-svn: 342211
Diffstat (limited to 'clang/www')
-rwxr-xr-xclang/www/diagnostics.html6
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/www/diagnostics.html b/clang/www/diagnostics.html
index 2c9c7913612d..2bb8685b2dc0 100755
--- a/clang/www/diagnostics.html
+++ b/clang/www/diagnostics.html
@@ -51,12 +51,6 @@ helps when multiple instances of the same character occur on a line. (We'll
revisit this more in following examples.)</p>
<pre>
- $ <span class="cmd">gcc-4.9 -fsyntax-only -Wformat format-strings.c</span>
- format-strings.c: In function 'void f()':
- format-strings.c:91:16: warning: field precision specifier '.*' expects a matching 'int' argument [-Wformat=]
- printf("%.*d");
- ^
- format-strings.c:91:16: warning: format '%d' expects a matching 'int' argument [-Wformat=]
$ <span class="cmd">clang -fsyntax-only format-strings.c</span>
<span class="loc">format-strings.c:91:13:</span> <span class="warn">warning:</span> <span class="msg">'.*' specified field precision is missing a matching 'int' argument</span>
<span class="snip" > printf("%.*d");</span>