diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:19:36 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-03-15 00:19:36 +0000 |
commit | fdc1706d009363c2e0008684b1813721f2d6e82a (patch) | |
tree | 34bde3b6137dfbc1835e24555a6f81307579e826 /lib/Target | |
parent | 3c0eda5a21a0e79a345fc9da0489fdbb5ef6b07e (diff) | |
download | external_llvm-fdc1706d009363c2e0008684b1813721f2d6e82a.zip external_llvm-fdc1706d009363c2e0008684b1813721f2d6e82a.tar.gz external_llvm-fdc1706d009363c2e0008684b1813721f2d6e82a.tar.bz2 |
Remove isImplicitDef TargetInstrDesc flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/Target.td | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/Target.td b/lib/Target/Target.td index d7f1e38..9d49bd2 100644 --- a/lib/Target/Target.td +++ b/lib/Target/Target.td @@ -193,7 +193,6 @@ class Instruction { bit isSimpleLoad = 0; // Is this just a load instruction? bit mayLoad = 0; // Is it possible for this inst to read memory? bit mayStore = 0; // Is it possible for this inst to write memory? - bit isImplicitDef = 0; // Is this instruction an implicit def instruction? bit isTwoAddress = 0; // Is this a two address instruction? bit isConvertibleToThreeAddress = 0; // Can this 2-addr instruction promote? bit isCommutable = 0; // Is this 3 operand instruction commutable? |