diff options
author | Andreas Gampe <agampe@google.com> | 2014-06-24 18:46:29 +0000 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-06-24 14:17:48 -0700 |
commit | 3c12c512faf6837844d5465b23b9410889e5eb11 (patch) | |
tree | 8372bce9785d2a70b507916e42f3a5242340ea81 /compiler/dex/compiler_enums.h | |
parent | fbd18f1923334f3208cfe6ba5f1d4f9eb421b063 (diff) | |
download | art-3c12c512faf6837844d5465b23b9410889e5eb11.tar.gz art-3c12c512faf6837844d5465b23b9410889e5eb11.tar.bz2 art-3c12c512faf6837844d5465b23b9410889e5eb11.zip |
Revert "Revert "ART: Split out more cases of Load/StoreRef, volatile as parameter""
This reverts commit de68676b24f61a55adc0b22fe828f036a5925c41.
Fixes an API comment, and differentiates between inserting and appending.
Change-Id: I0e9a21bb1d25766e3cbd802d8b48633ae251a6bf
Diffstat (limited to 'compiler/dex/compiler_enums.h')
-rw-r--r-- | compiler/dex/compiler_enums.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/dex/compiler_enums.h b/compiler/dex/compiler_enums.h index de9ac4bd01..caecb7a48e 100644 --- a/compiler/dex/compiler_enums.h +++ b/compiler/dex/compiler_enums.h @@ -527,6 +527,13 @@ enum FixupKind { std::ostream& operator<<(std::ostream& os, const FixupKind& kind); +enum VolatileKind { + kNotVolatile, // Load/Store is not volatile + kVolatile // Load/Store is volatile +}; + +std::ostream& operator<<(std::ostream& os, const VolatileKind& kind); + } // namespace art #endif // ART_COMPILER_DEX_COMPILER_ENUMS_H_ |