aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/ci/ciMethodData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/ci/ciMethodData.cpp')
-rw-r--r--src/share/vm/ci/ciMethodData.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/share/vm/ci/ciMethodData.cpp b/src/share/vm/ci/ciMethodData.cpp
index c30c6c364..268888bfd 100644
--- a/src/share/vm/ci/ciMethodData.cpp
+++ b/src/share/vm/ci/ciMethodData.cpp
@@ -78,7 +78,9 @@ ciMethodData::ciMethodData() : ciMetadata(NULL) {
void ciMethodData::load_data() {
MethodData* mdo = get_MethodData();
- if (mdo == NULL) return;
+ if (mdo == NULL) {
+ return;
+ }
// To do: don't copy the data if it is not "ripe" -- require a minimum #
// of invocations.
@@ -373,7 +375,6 @@ void ciMethodData::print_impl(outputStream* st) {
}
void ciMethodData::dump_replay_data(outputStream* out) {
- ASSERT_IN_VM;
ResourceMark rm;
MethodData* mdo = get_MethodData();
Method* method = mdo->method();