Hi,

The following two test cases from clang test suite are failed on MIPS:

Analysis/nullptr.cpp
CodeGen/Generic/asm-large-immediate.ll

The reason is inline asm constraint "=a" (means %eax, %ax, %al) used
in these tests. This constraint is unsupported on MIPS. I think this
constraint can be safely replaced by the more general one "=r" (means
any general purpose register). The attached patch does that for both
test cases.

Are there any objections?

--
Simon

Attachment: asm-cons.patch
Description: Binary data

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to