1#include <featureTests.h>
2#ifdef ROSE_ENABLE_SOURCE_ANALYSIS
4#ifndef RW_ACCESS_LABELER_H
5#define RW_ACCESS_LABELER_H
11namespace rwAccessLabeler {
13typedef enum {readAccess=0, writeAccess=1, rwAccess=2} accessType;
17void addRWAnnotations(
SgNode* root);
20accessType getAccessType(
SgNode* n);
26std::string accessTypeToStr(accessType t);
This class represents the base class for all IR nodes within Sage III.