diff options
Diffstat (limited to 'build/art.go')
-rw-r--r-- | build/art.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/build/art.go b/build/art.go index c06be0abed..6c9aa89f8f 100644 --- a/build/art.go +++ b/build/art.go @@ -68,12 +68,6 @@ func globalFlags(ctx android.BaseContext) ([]string, []string) { "-DART_READ_BARRIER_TYPE_IS_"+barrierType+"=1") } - if envTrue(ctx, "ART_USE_OLD_ARM_BACKEND") { - // Used to enable the old, pre-VIXL ARM code generator. - cflags = append(cflags, "-DART_USE_OLD_ARM_BACKEND=1") - asflags = append(asflags, "-DART_USE_OLD_ARM_BACKEND=1") - } - // We need larger stack overflow guards for ASAN, as the compiled code will have // larger frame sizes. For simplicity, just use global not-target-specific cflags. // Note: We increase this for both debug and non-debug, as the overflow gap will |