From 7f30b64dceead8cb4777e46713a1ab50ad2499b5 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Wed, 16 Dec 2009 23:36:52 +0000 Subject: [PATCH] Renamed "tCMNZ" to "tCMNz" to be consistent with other similar namings. llvm-svn: 91571 --- llvm/lib/Target/ARM/ARMInstrThumb.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/ARM/ARMInstrThumb.td b/llvm/lib/Target/ARM/ARMInstrThumb.td index dae3c22ee138..c92dd0e28ff6 100644 --- a/llvm/lib/Target/ARM/ARMInstrThumb.td +++ b/llvm/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>;