blob: ea81b2119ad2c261146b1f8998c66c64867efb1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "reg.h"
reg::address::address(
reg_type type,
unsigned int index,
enum swizzle swizzle)
:
m_type(type),
m_index(index),
m_swizzle(swizzle)
{ }
reg::~reg() { }
|