From: Johnny Chen Date: Wed, 16 Dec 2009 23:36:52 +0000 (+0000) Subject: Renamed "tCMNZ" to "tCMNz" to be consistent with other similar namings. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=caedfbc6ae4cf039721fcfdb6fb16b4e78002500;p=oota-llvm.git Renamed "tCMNZ" to "tCMNz" to be consistent with other similar namings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91571 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrThumb.td b/lib/Target/ARM/ARMInstrThumb.td index dae3c22ee13..c92dd0e28ff 100644 --- a/lib/Target/ARM/ARMInstrThumb.td +++ b/lib/Target/ARM/ARMInstrThumb.td @@ -515,7 +515,7 @@ def tCMN : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr, "cmn", "\t$lhs, $rhs", [(ARMcmp tGPR:$lhs, (ineg tGPR:$rhs))]>, T1DataProcessing<0b1011>; -def tCMNZ : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr, +def tCMNz : T1pI<(outs), (ins tGPR:$lhs, tGPR:$rhs), IIC_iCMPr, "cmn", "\t$lhs, $rhs", [(ARMcmpZ tGPR:$lhs, (ineg tGPR:$rhs))]>, T1DataProcessing<0b1011>;