summaryrefslogtreecommitdiff
path: root/www/diagnostics.html
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2013-11-08 23:52:29 +0000
committerHans Wennborg <hans@hanshq.net>2013-11-08 23:52:29 +0000
commit1c1b4da35ea978c6be7a6777098ad6dd5db96286 (patch)
tree8d877448e5ecfa436fa35c1bba6c7ef1a0bb7f8d /www/diagnostics.html
parent1b9c0248527cb13638c80939c4029ba1197d7599 (diff)
downloadclang-1c1b4da35ea978c6be7a6777098ad6dd5db96286.tar.gz
Update macro expansion diagnostic examples to say 'expanded from:'
instead of 'instantiated from:'. The actual wording of the note was changed in r135135. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@194297 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'www/diagnostics.html')
-rw-r--r--www/diagnostics.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/www/diagnostics.html b/www/diagnostics.html
index 84c6f8bc32..bd9a89d629 100644
--- a/www/diagnostics.html
+++ b/www/diagnostics.html
@@ -313,7 +313,7 @@ and also shows how some of the other pieces work in a bigger example.</p>
t.c:80:3: <span class="err">error:</span> invalid operands to binary expression ('typeof(P)' (aka 'struct mystruct') and 'typeof(F)' (aka 'float'))
<span class="snip"> X = MYMAX(P, F);</span>
<span class="point"> ^~~~~~~~~~~</span>
- t.c:76:94: note: instantiated from:
+ t.c:76:94: note: expanded from:
<span class="snip">#define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a &lt; __b ? __b : __a; })</span>
<span class="point"> ~~~ ^ ~~~</span>
</pre>
@@ -326,10 +326,10 @@ implements the "wwopen" class of APIs):</p>
t.c:22:2: <span class="warn">warning:</span> type specifier missing, defaults to 'int'
<span class="snip"> ILPAD();</span>
<span class="point"> ^</span>
- t.c:17:17: note: instantiated from:
+ t.c:17:17: note: expanded from:
<span class="snip">#define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */</span>
<span class="point"> ^</span>
- t.c:14:2: note: instantiated from:
+ t.c:14:2: note: expanded from:
<span class="snip"> register i; \</span>
<span class="point"> ^</span>
</pre>