aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/CodeGenInstruction.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-01-09 18:27:06 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-01-09 18:27:06 +0000
commit51fecc80f77e1ed048c69b8905742b3ca495d757 (patch)
tree050e5e7a25883fc7fe230f69563385e92ba4dd8c /utils/TableGen/CodeGenInstruction.h
parentbaec98d00bda1cc904405d92716ea9d2f4c1fe9d (diff)
downloadexternal_llvm-51fecc80f77e1ed048c69b8905742b3ca495d757.zip
external_llvm-51fecc80f77e1ed048c69b8905742b3ca495d757.tar.gz
external_llvm-51fecc80f77e1ed048c69b8905742b3ca495d757.tar.bz2
* Remove instruction fields hasInFlag / hasOutFlag and added SNDPInFlag and
SNDPOutFlag to DAG nodes. These properties do not belong to target specific instructions. * Added DAG node property SNDPOptInFlag. It's same as SNDPInFlag except it's optional. Used by ret / call, etc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/CodeGenInstruction.h')
-rw-r--r--utils/TableGen/CodeGenInstruction.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/utils/TableGen/CodeGenInstruction.h b/utils/TableGen/CodeGenInstruction.h
index b76d3b9..9ced6200 100644
--- a/utils/TableGen/CodeGenInstruction.h
+++ b/utils/TableGen/CodeGenInstruction.h
@@ -85,8 +85,6 @@ namespace llvm {
bool usesCustomDAGSchedInserter;
bool hasVariableNumberOfOperands;
bool hasCtrlDep;
- bool hasInFlag;
- bool hasOutFlag;
bool noResults;
CodeGenInstruction(Record *R, const std::string &AsmStr);