[GPU] Fix bit check in Make Coherent logging.

This commit is contained in:
Maksim Derbasov 2019-03-02 13:13:03 +03:00 committed by Rick Gibbed
parent d703b5b880
commit 142148e594
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ void CommandProcessor::MakeCoherent() {
}
const char* action = "N/A";
if (status_host & 0x03000000) {
if ((status_host & 0x03000000) == 0x03000000) {
action = "VC | TC";
} else if (status_host & 0x02000000) {
action = "TC";