diff options
author | Mike Danes <onemihaid@hotmail.com> | 2018-07-25 21:33:43 +0300 |
---|---|---|
committer | Mike Danes <onemihaid@hotmail.com> | 2018-08-25 23:22:15 +0300 |
commit | 49d931cd534eb09654fb20c90fed70b4fa499886 (patch) | |
tree | fbbf951aef4770320af10bf7a74f4fa655a1d561 /src/jit/gentree.h | |
parent | 37e8cc75c96160a9f2fa27535e593e397a707640 (diff) | |
download | coreclr-49d931cd534eb09654fb20c90fed70b4fa499886.tar.gz coreclr-49d931cd534eb09654fb20c90fed70b4fa499886.tar.bz2 coreclr-49d931cd534eb09654fb20c90fed70b4fa499886.zip |
Fix CSE side effect and definition extraction
Diffstat (limited to 'src/jit/gentree.h')
-rw-r--r-- | src/jit/gentree.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/gentree.h b/src/jit/gentree.h index cd402168fa..4ccf17c1c1 100644 --- a/src/jit/gentree.h +++ b/src/jit/gentree.h @@ -706,7 +706,6 @@ public: // The only requirement of this flag is that it not overlap any of the // side-effect flags. The actual bit used is otherwise arbitrary. #define GTF_IS_IN_CSE GTF_BOOLEAN -#define GTF_PERSISTENT_SIDE_EFFECTS_IN_CSE (GTF_ASG | GTF_CALL | GTF_IS_IN_CSE) // Can any side-effects be observed externally, say by a caller method? // For assignments, only assignments to global memory can be observed |