From e260b036866572847c89a059cc4ee54b59c11d73 Mon Sep 17 00:00:00 2001 From: seyko Date: Tue, 6 Jan 2015 22:59:19 +0300 Subject: Allow tcc to understand a setob,... opcodes as alias to seto,... PS: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20101122/112576.html This is fix PR8686 for llvm: accepting a 'b' suffix at the end of all the setcc instructions. --- i386-tok.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'i386-tok.h') diff --git a/i386-tok.h b/i386-tok.h index 6ba865d..b0ca3ed 100644 --- a/i386-tok.h +++ b/i386-tok.h @@ -172,10 +172,11 @@ DEF_ASM(lcall) DEF_ASM(ljmp) - DEF_ASMTEST(j) + DEF_ASMTEST(j,) - DEF_ASMTEST(set) - DEF_ASMTEST(cmov) + DEF_ASMTEST(set,) + DEF_ASMTEST(set,b) + DEF_ASMTEST(cmov,) DEF_WLX(bsf) DEF_WLX(bsr) -- cgit v1.3.1