http://llvm.org/bugs/show_bug.cgi?id=10385
Summary: clang prints invisible black text on black background
terminal
Product: clang
Version: trunk
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P
Component: Frontend
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
The compiler prints the text "note:" in black on my
white-text-on-black-background terminal:
/tmp $ cat v.c
void g(void *);
void f(void) { void *volatile x; g(&x); }
/tmp $ clang -Wall -Wextra -Os -c v.c
v.c:2:36: warning: passing 'void *volatile *' to parameter of type 'void *'
discards qualifiers
void f(void) { void *volatile x; g(&x); }
^~
v.c:1:14: note: passing argument to parameter here
void g(void *);
^
1 warning generated.
/tmp $
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs