1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix emission of return instructions

llvm-svn: 688
This commit is contained in:
Chris Lattner 2001-10-01 02:32:34 +00:00
parent 0d1998546d
commit 716c1ac09e

View File

@ -112,6 +112,8 @@ private :
case BRLEZ: case BRLZ:
case BRNZ: case BRGZ:
case BRGEZ: return 1 << 0;
case RETURN: return 1 << 1; // Remove Arg #2 which is zero
default: return 0; // By default, don't hack operands...
}
}