aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-06-19 19:25:30 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-06-19 19:25:30 +0000
commitb21495043e2c82bdaf88d44c8859cf9fc757695c (patch)
tree782d51005a07e7340c5dcd53e7db814e2a3a5ac0
parentab390d045a5cd232ff6c89ad1c35eff7297cc419 (diff)
Minor clean up.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28860 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86InstrSSE.td9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td
index 658b6f62fa..4e495b6784 100644
--- a/lib/Target/X86/X86InstrSSE.td
+++ b/lib/Target/X86/X86InstrSSE.td
@@ -173,13 +173,10 @@ class PSI<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>
class PDI<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>
: I<o, F, ops, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
class PSIi8<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>
- : X86Inst<o, F, Imm8, ops, asm>, TB, Requires<[HasSSE1]> {
- let Pattern = pattern;
-}
+ : Ii8<o, F, ops, asm, pattern>, TB, Requires<[HasSSE1]>;
class PDIi8<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>
- : X86Inst<o, F, Imm8, ops, asm>, TB, OpSize, Requires<[HasSSE2]> {
- let Pattern = pattern;
-}
+ : Ii8<o, F, ops, asm, pattern>, TB, OpSize, Requires<[HasSSE2]>;
+
class S3SI<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>
: I<o, F, ops, asm, pattern>, XS, Requires<[HasSSE3]>;
class S3DI<bits<8> o, Format F, dag ops, string asm, list<dag> pattern>