Alloy now builds on clang.

Hopefully not just bouncing back to MSVC failures…
This commit is contained in:
Ben Vanik
2014-07-17 20:43:27 -07:00
parent 4cbd267a52
commit 19b6e90b63
7 changed files with 121 additions and 96 deletions

View File

@@ -248,6 +248,9 @@ void Disasm_dcbf(InstrData& i, StringBuffer* str) {
case 3:
name = "dcbflp";
break;
default:
name = "dcbf.??";
break;
}
str->Append("%-8s r%d, r%d", name, i.X.RA, i.X.RB);
}