summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-04-12 01:52:04 +0000
committerChris Lattner <sabre@nondot.org>2004-04-12 01:52:04 +0000
commit284b496aaeb959d382b2410e4bd21fb6e0c694bb (patch)
tree6f47685be77a64220984774371662857b2d7cd8e /lib
parent2fc83a5ba636cdac0726330a71db11cb646f81a9 (diff)
downloadllvm-284b496aaeb959d382b2410e4bd21fb6e0c694bb.tar.gz
llvm-284b496aaeb959d382b2410e4bd21fb6e0c694bb.tar.bz2
llvm-284b496aaeb959d382b2410e4bd21fb6e0c694bb.tar.xz
No really, fix printing for LLC. I gotta get a way for CVS to whine at me if
I have unsaved emacs buffers, geeze... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86InstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index b13b1bea44..083a936516 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -851,7 +851,7 @@ def FUCOMr : I<"fucom" , 0xE0, AddRegFrm>, DD, Imp<[ST0],[]>; // FPSW = com
def FUCOMPr : I<"fucomp" , 0xE8, AddRegFrm>, DD, Imp<[ST0],[]>; // FPSW = compare ST(0) with ST(i), pop
def FUCOMPPr : I<"fucompp", 0xE9, RawFrm >, DA, Imp<[ST0],[]>; // compare ST(0) with ST(1), pop, pop
-let printImplicitUsesAfter = 1 in {
+let printImplicitUsesBefore = 1 in {
def FUCOMIr : FPI<"fucomi", 0xE8, AddRegFrm, TwoArgFP>, DB, Imp<[ST0],[]>; // CC = compare ST(0) with ST(i)
def FUCOMIPr : I<"fucomip" , 0xE8, AddRegFrm>, DF, Imp<[ST0],[]>; // CC = compare ST(0) with ST(i), pop
}