summaryrefslogtreecommitdiff
path: root/utils/TableGen/DAGISelEmitter.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/DAGISelEmitter.h
parentbaec98d00bda1cc904405d92716ea9d2f4c1fe9d (diff)
downloadllvm-51fecc80f77e1ed048c69b8905742b3ca495d757.tar.gz
llvm-51fecc80f77e1ed048c69b8905742b3ca495d757.tar.bz2
llvm-51fecc80f77e1ed048c69b8905742b3ca495d757.tar.xz
* 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/DAGISelEmitter.h')
-rw-r--r--utils/TableGen/DAGISelEmitter.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/DAGISelEmitter.h b/utils/TableGen/DAGISelEmitter.h
index 9bf7c205bb..558b4cd3f8 100644
--- a/utils/TableGen/DAGISelEmitter.h
+++ b/utils/TableGen/DAGISelEmitter.h
@@ -102,7 +102,8 @@ namespace llvm {
}
// SelectionDAG node properties.
- enum SDNP { SDNPCommutative, SDNPAssociative, SDNPHasChain };
+ enum SDNP { SDNPCommutative, SDNPAssociative, SDNPHasChain,
+ SDNPOutFlag, SDNPInFlag, SDNPOptInFlag };
/// hasProperty - Return true if this node has the specified property.
///