aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-06-21 20:35:09 +0000
committerEric Christopher <echristo@apple.com>2010-06-21 20:35:09 +0000
commit1f4a1493fb1f60547f84d2f3454c8ccd02895f83 (patch)
tree88cf2ab9202270ac88e6d1d7f7bc99e9224cd916 /include
parent61abd7b395d0bbebd8cc44c870b02609abef6976 (diff)
downloadexternal_llvm-1f4a1493fb1f60547f84d2f3454c8ccd02895f83.zip
external_llvm-1f4a1493fb1f60547f84d2f3454c8ccd02895f83.tar.gz
external_llvm-1f4a1493fb1f60547f84d2f3454c8ccd02895f83.tar.bz2
Remove isTwoAddress from llvm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106470 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/Target.td1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Target/Target.td b/include/llvm/Target/Target.td
index 6379459..1d1e1f8 100644
--- a/include/llvm/Target/Target.td
+++ b/include/llvm/Target/Target.td
@@ -203,7 +203,6 @@ class Instruction {
bit canFoldAsLoad = 0; // Can this be folded as a simple memory operand?
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 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?
bit isTerminator = 0; // Is this part of the terminator for a basic block?