diff options
| author | 2016-02-01 15:27:34 +0000 | |
|---|---|---|
| committer | 2016-02-01 15:27:34 +0000 | |
| commit | bceee26590c8c757987689d2e1002c2f98f0ab33 (patch) | |
| tree | 1904ccccb00244a3f948ccf3f95fc40c95b9ff3e /compiler/driver/compiler_options.h | |
| parent | 99b4d43c7b2c81a0a4712578016efdfc65cdc21b (diff) | |
| parent | ce4b0ba4d762775a86b3529ac76cb89199c0cc1e (diff) | |
Merge "Ignore image checksum for ExtractOnly oat files"
Diffstat (limited to 'compiler/driver/compiler_options.h')
| -rw-r--r-- | compiler/driver/compiler_options.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 39372b36b8..a220959288 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -116,6 +116,10 @@ class CompilerOptions FINAL { return compiler_filter_ == CompilerOptions::kVerifyNone; } + bool IsExtractOnly() const { + return compiler_filter_ == CompilerOptions::kVerifyAtRuntime; + } + size_t GetHugeMethodThreshold() const { return huge_method_threshold_; } |