From: Chris Lattner Date: Thu, 11 Feb 2010 19:52:11 +0000 (+0000) Subject: unbreak the build. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8b442a814eedbfb941ec4d0f1803168b92692af6;p=oota-llvm.git unbreak the build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95915 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 1090576c3a1..a26eb32ee8d 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -635,7 +635,7 @@ let isBranch = 1, isTerminator = 1, Uses = [EFLAGS] in { } defm JO : ICBr<0x70, 0x80, "jo\t$dst" , X86_COND_O>; -defm JNO : ICBr<0x71, 0x81, "jo\t$dst" , X86_COND_NO>; +defm JNO : ICBr<0x71, 0x81, "jno\t$dst" , X86_COND_NO>; defm JB : ICBr<0x72, 0x82, "jb\t$dst" , X86_COND_B>; defm JAE : ICBr<0x73, 0x83, "jae\t$dst", X86_COND_AE>; defm JE : ICBr<0x74, 0x84, "je\t$dst" , X86_COND_E>;