summaryrefslogtreecommitdiff
path: root/src/utils/accessor.cc
blob: 86484c54e9eaf74bb2326664afe94185ab28432f (plain)
1
2
3
4
5
6
7
8
#include "accessor.h"
#include <iostream>

std::ostream &operator<<(std::ostream &os, Accessor a)
{
	const std::string nameA[] = {"IDLE", "MEM", "FETCH", "L1CACHE", "SIDE"};
	return os << nameA[a];
}