[vm] fix ifdefs after constants refactoring

Change-Id: I273ca9df6bf0ed45f8441d4f8acc91f8452d884c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134336
Commit-Queue: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Martin Kustermann <kustermann@google.com>
Reviewed-by: Martin Kustermann <kustermann@google.com>
This commit is contained in:
Daco Harkes 2020-02-05 16:36:09 +00:00 committed by commit-bot@chromium.org
parent b59d3974d1
commit b17459731a
4 changed files with 12 additions and 4 deletions

View file

@ -2,9 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h" // NOLINT
#if defined(TARGET_ARCH_ARM)
#include "vm/constants.h"
#include "vm/constants.h" // NOLINT
namespace dart {

View file

@ -2,9 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h" // NOLINT
#if defined(TARGET_ARCH_ARM64)
#include "vm/constants.h"
#include "vm/constants.h" // NOLINT
namespace dart {

View file

@ -2,9 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h" // NOLINT
#if defined(TARGET_ARCH_IA32)
#include "vm/constants.h"
#include "vm/constants.h" // NOLINT
namespace dart {

View file

@ -2,9 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "platform/globals.h" // NOLINT
#if defined(TARGET_ARCH_X64)
#include "vm/constants.h"
#include "vm/constants.h" // NOLINT
namespace dart {