diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2020-03-23 08:34:15 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2020-03-23 08:34:15 +0000 |
commit | 91a8e6f60c508c6e010b6ef8e4056e3a6f04c447 (patch) | |
tree | 42372667d930c57ef3384c1c4981fb5c1591ef8b /compiler/driver/compiler_options.h | |
parent | 873bb64b8815b3f6a350ce109eb54ec770369d22 (diff) |
Revert "Add "linkage" test options"
This reverts commit 873bb64b8815b3f6a350ce109eb54ec770369d22.
Reason for revert: Test in CL fails on device, see:
https://ci.chromium.org/p/art/builders/ci/angler-armv7-ndebug/1302?
Change-Id: I18d8204f40bbc0f89eb230656e14966035b0b1c3
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 639c5475e8..79ba1c27c9 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -311,14 +311,6 @@ class CompilerOptions final { return force_determinism_; } - bool IsCheckLinkageConditions() const { - return check_linkage_conditions_; - } - - bool IsCrashOnLinkageViolation() const { - return crash_on_linkage_violation_; - } - bool DeduplicateCode() const { return deduplicate_code_; } @@ -439,13 +431,6 @@ class CompilerOptions final { // outcomes. bool force_determinism_; - // Whether the compiler should check for violation of the conditions required to perform AOT - // "linkage". - bool check_linkage_conditions_; - // Whether the compiler should crash when encountering a violation of one of - // the conditions required to perform AOT "linkage". - bool crash_on_linkage_violation_; - // Whether code should be deduplicated. bool deduplicate_code_; |