00001 #ifndef DATA_CONFLICT_AST_ATTRIBUTES_H_INCLUDED_ 00002 #define DATA_CONFLICT_AST_ATTRIBUTES_H_INCLUDED_ 00003 00004 #include "rose.h" 00005 00006 namespace risc { 00007 00008 namespace sg { 00009 00016 class DataConflictAstAttributes: public AstAttribute { 00017 public: 00018 00019 DataConflictAstAttributes(); 00020 00021 enum Status {UNUSED, READ, WRITE}; 00022 00023 Status status_; 00024 }; 00025 00026 } // end namespace sg 00027 00028 } // end namespace risc 00029 00030 #endif /* AST_CONFLICT_ATTRIBUTES_H_INCLUDED_ */ 00031 00032 /* ex: set softtabstop=2 tabstop=2 shiftwidth=2 expandtab: */