diff --git a/clang/www/diagnostics.html b/clang/www/diagnostics.html index 84c6f8bc320c..bd9a89d62979 100644 --- a/clang/www/diagnostics.html +++ b/clang/www/diagnostics.html @@ -313,7 +313,7 @@ and also shows how some of the other pieces work in a bigger example.

t.c:80:3: error: invalid operands to binary expression ('typeof(P)' (aka 'struct mystruct') and 'typeof(F)' (aka 'float')) X = MYMAX(P, F); ^~~~~~~~~~~ - t.c:76:94: note: instantiated from: + t.c:76:94: note: expanded from: #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; }) ~~~ ^ ~~~ @@ -326,10 +326,10 @@ implements the "wwopen" class of APIs):

t.c:22:2: warning: type specifier missing, defaults to 'int' ILPAD(); ^ - t.c:17:17: note: instantiated from: + t.c:17:17: note: expanded from: #define ILPAD() PAD((NROW - tt.tt_row) * 10) /* 1 ms per char */ ^ - t.c:14:2: note: instantiated from: + t.c:14:2: note: expanded from: register i; \ ^