mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-15 16:38:41 +00:00
Add deprecation of neverHasSideEffects to documentation comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175175 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e186d7191c
commit
ff9d058f28
@ -367,8 +367,9 @@ class Instruction {
|
|||||||
// hasSideEffects - The instruction has side effects that are not
|
// hasSideEffects - The instruction has side effects that are not
|
||||||
// captured by any operands of the instruction or other flags.
|
// captured by any operands of the instruction or other flags.
|
||||||
//
|
//
|
||||||
// neverHasSideEffects - Set on an instruction with no pattern if it has no
|
// neverHasSideEffects (deprecated) - Set on an instruction with no pattern
|
||||||
// side effects.
|
// if it has no side effects. This is now equivalent to setting
|
||||||
|
// "hasSideEffects = 0".
|
||||||
bit hasSideEffects = ?;
|
bit hasSideEffects = ?;
|
||||||
bit neverHasSideEffects = 0;
|
bit neverHasSideEffects = 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user