blob: 836c0c4732dd700aee38c370902cb1673b64b402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright 2011 Google Inc. All Rights Reserved.
#ifndef ART_SRC_CONSTANTS_H_
#define ART_SRC_CONSTANTS_H_
namespace art {
enum InstructionSet {
kNone,
kArm,
kThumb2,
kX86
};
} // namespace art
#include "constants_x86.h"
#include "constants_arm.h"
#endif // ART_SRC_CONSTANTS_H_
|