gallium/radeon: Only print a message for LLVM diagnostic errors
We were printing messages for all diagnostic types, which was spamming the console for some OpenCL programs.
This commit is contained in:
@@ -87,11 +87,13 @@ static void radeonDiagnosticHandler(LLVMDiagnosticInfoRef di, void *context) {
|
||||
char *diaginfo_message;
|
||||
|
||||
diaginfo_message = LLVMGetDiagInfoDescription(di);
|
||||
fprintf(stderr,"LLVM triggered Diagnostic Handler: %s\n", diaginfo_message);
|
||||
LLVMDisposeMessage(diaginfo_message);
|
||||
|
||||
diagnosticflag = (unsigned int *)context;
|
||||
*diagnosticflag = ((LLVMDSError == LLVMGetDiagInfoSeverity(di)) ? 1 : 0);
|
||||
if (LLVMGetDiagInfoSeverity(di) == LLVMDSError) {
|
||||
*diagnosticflag = 1;
|
||||
fprintf(stderr,"LLVM triggered Diagnostic Handler: %s\n", diaginfo_message);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user