diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-30 22:24:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-30 22:24:18 +0000 |
commit | 79b13735adcc034a6869f1fd5670051c6dd0a28a (patch) | |
tree | 48046c09736922ab9e719330d3d0fd59777a6e2b | |
parent | 92e41d598252260eec12d65197c4fe3d425de5d8 (diff) |
Add a new flag, which is only used for symmetry.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11025 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.h b/lib/Target/X86/X86InstrInfo.h index 0639c2d053..98f9fe68d7 100644 --- a/lib/Target/X86/X86InstrInfo.h +++ b/lib/Target/X86/X86InstrInfo.h @@ -124,6 +124,9 @@ namespace X86II { FPTypeShift = 13, FPTypeMask = 7 << FPTypeShift, + // NotFP - The default, set for instructions that do not use FP registers. + NotFP = 0 << FPTypeShift, + // ZeroArgFP - 0 arg FP instruction which implicitly pushes ST(0), f.e. fld0 ZeroArgFP = 1 << FPTypeShift, |