[LLVMbugs] [Bug 10385] New: clang prints invisible black text on black background terminal
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Sun Jul 17 11:28:47 PDT 2011
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: unassignedclangbugs at nondot.org
ReportedBy: davezarzycki at gmail.com
CC: llvmbugs at cs.uiuc.edu
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.
More information about the llvm-bugs
mailing list