diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-10 05:39:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-10 05:39:30 +0000 |
commit | 8463122e8c6776f79e92663302f18acf61433463 (patch) | |
tree | 3995f5fc8a7c122e9c6e1ecb7a731745b9af3a8c /utils/TableGen/InstrInfoEmitter.h | |
parent | ca4e0fe76aefbdea8c5c5c215e88130bac83e242 (diff) | |
download | external_llvm-8463122e8c6776f79e92663302f18acf61433463.zip external_llvm-8463122e8c6776f79e92663302f18acf61433463.tar.gz external_llvm-8463122e8c6776f79e92663302f18acf61433463.tar.bz2 |
start inferring 'no side effects'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45822 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/InstrInfoEmitter.h')
-rw-r--r-- | utils/TableGen/InstrInfoEmitter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/InstrInfoEmitter.h b/utils/TableGen/InstrInfoEmitter.h index a223f24..977d3db 100644 --- a/utils/TableGen/InstrInfoEmitter.h +++ b/utils/TableGen/InstrInfoEmitter.h @@ -43,7 +43,7 @@ private: // Instruction analysis. void InferFromPattern(const CodeGenInstruction &Inst, - bool &isStore, bool &isLoad, bool &NeverHasSideEffects); + bool &MayStore, bool &MayLoad, bool &HasSideEffects); void emitRecord(const CodeGenInstruction &Inst, unsigned Num, Record *InstrInfo, |