summaryrefslogtreecommitdiff
path: root/src/jit/reglist.h
blob: 7b706110a8ab65334e8584edb411f9309948b1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#ifndef REGLIST_H
#define REGLIST_H

#include "target.h"
#include "tinyarray.h"

// The "regList" type is a small set of registerse
#ifdef _TARGET_X86_
typedef TinyArray<unsigned short, regNumber, REGNUM_BITS> regList;
#else
// The regList is unused for all other targets.
#endif // _TARGET_*

#endif // REGLIST_H