diff options
Diffstat (limited to 'runtime/utils.cc')
-rw-r--r-- | runtime/utils.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/utils.cc b/runtime/utils.cc index d48edcfa55..6f10aaacaf 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -442,6 +442,12 @@ std::string PrettyJavaAccessFlags(uint32_t access_flags) { if ((access_flags & kAccStatic) != 0) { result += "static "; } + if ((access_flags & kAccAbstract) != 0) { + result += "abstract "; + } + if ((access_flags & kAccInterface) != 0) { + result += "interface "; + } if ((access_flags & kAccTransient) != 0) { result += "transient "; } |