diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-10 04:38:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-10 04:38:57 +0000 |
commit | 1ca20682277172152f0c31869a2871c3afb17326 (patch) | |
tree | e0724d47f881734dabee8476a4a2f156b9e4b909 /llvm/utils/TableGen/CodeGenTarget.h | |
parent | f171482a665002dfba28452228590fa5ed1ab846 (diff) | |
download | bcm5719-llvm-1ca20682277172152f0c31869a2871c3afb17326.tar.gz bcm5719-llvm-1ca20682277172152f0c31869a2871c3afb17326.zip |
realize that instructions who match intrinsics that read memory read memory.
Also, instructions with any nodes that are SDNPMayLoad also read memory.
llvm-svn: 45817
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.h b/llvm/utils/TableGen/CodeGenTarget.h index 02afe955472..07407334196 100644 --- a/llvm/utils/TableGen/CodeGenTarget.h +++ b/llvm/utils/TableGen/CodeGenTarget.h @@ -37,6 +37,7 @@ enum SDNP { SDNPOutFlag, SDNPInFlag, SDNPOptInFlag, + SDNPMayLoad, SDNPMayStore }; |