aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86.td
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-06 15:32:20 +0000
committerChris Lattner <sabre@nondot.org>2003-08-06 15:32:20 +0000
commit2959b6ec49be09096cf0a5e7504d2a1ec15ef2b3 (patch)
tree1120399d3613566493a9ecc9a4d904102a7283dd /lib/Target/X86/X86.td
parentd87b59c8661623713627dea4920a4962b29c7b1d (diff)
downloadexternal_llvm-2959b6ec49be09096cf0a5e7504d2a1ec15ef2b3.zip
external_llvm-2959b6ec49be09096cf0a5e7504d2a1ec15ef2b3.tar.gz
external_llvm-2959b6ec49be09096cf0a5e7504d2a1ec15ef2b3.tar.bz2
Completely eliminate the isVoid TSFlag, shifting over all other fields
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.td')
-rw-r--r--lib/Target/X86/X86.td8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/X86/X86.td b/lib/Target/X86/X86.td
index 7cd8311..a90c27c 100644
--- a/lib/Target/X86/X86.td
+++ b/lib/Target/X86/X86.td
@@ -26,10 +26,10 @@ def X86InstrInfo : InstrInfo {
// Define how we want to layout our TargetSpecific information field... This
// should be kept up-to-date with the fields in the X86InstrInfo.h file.
- let TSFlagsFields = ["FormBits", "hasOpSizePrefix", "Prefix",
- "TypeBits", "FPFormBits", "printImplicitUses", "Opcode"];
- let TSFlagsShifts = [ 0, 6, 7,
- 11, 14, 17, 18];
+ let TSFlagsFields = ["FormBits" , "hasOpSizePrefix" , "Prefix", "TypeBits",
+ "FPFormBits", "printImplicitUses", "Opcode"];
+ let TSFlagsShifts = [ 0, 5, 6, 10,
+ 13, 16, 17];
}
def X86 : Target {