diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-20 23:15:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-20 23:15:07 +0000 |
commit | 96dc5e5f6d2bdad7b24f191998e324888afacf83 (patch) | |
tree | 8022f60d8d9c3e2de701af64295eaf6ddc66aff9 | |
parent | f2c5bca165fa654ad46f2b232773b2116b734b63 (diff) |
remove unused flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28888 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCInstrFormats.td | 1 | ||||
-rw-r--r-- | lib/Target/PowerPC/PPCInstrInfo.td | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCInstrFormats.td b/lib/Target/PowerPC/PPCInstrFormats.td index bb0ccf89b0..9ed4393ff8 100644 --- a/lib/Target/PowerPC/PPCInstrFormats.td +++ b/lib/Target/PowerPC/PPCInstrFormats.td @@ -16,7 +16,6 @@ class I<bits<6> opcode, dag OL, string asmstr, InstrItinClass itin> field bits<32> Inst; bit PPC64 = 0; // Default value, override with isPPC64 - bit VMX = 0; // Default value, override with isVMX let Name = ""; let Namespace = "PPC"; diff --git a/lib/Target/PowerPC/PPCInstrInfo.td b/lib/Target/PowerPC/PPCInstrInfo.td index 36712189b5..341c47ac70 100644 --- a/lib/Target/PowerPC/PPCInstrInfo.td +++ b/lib/Target/PowerPC/PPCInstrInfo.td @@ -167,7 +167,6 @@ def imm16ShiftedSExt : PatLeaf<(imm), [{ // PowerPC Flag Definitions. class isPPC64 { bit PPC64 = 1; } -class isVMX { bit VMX = 1; } class isDOT { list<Register> Defs = [CR0]; bit RC = 1; |