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

We're not going to spend 100% of time in interrupts, do we? :)

llvm-svn: 70713
This commit is contained in:
Anton Korobeynikov 2009-05-03 13:02:57 +00:00
parent 627e169e8e
commit df71fb8a3a

View File

@ -41,7 +41,7 @@ def NOP : Pseudo<(outs), (ins), "nop", []>;
// FIXME: Provide proper encoding!
let isReturn = 1, isTerminator = 1 in {
def RETI : Pseudo<(outs), (ins), "reti", [(retflag)]>;
def RETI : Pseudo<(outs), (ins), "ret", [(retflag)]>;
}
//===----------------------------------------------------------------------===//