1 //===-- DNBRegisterInfo.h ---------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Created by Greg Clayton on 8/3/07.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef __DNBRegisterInfo_h__
15 #define __DNBRegisterInfo_h__
16 
17 #include "DNBDefs.h"
18 #include <stdint.h>
19 #include <stdio.h>
20 
21 struct DNBRegisterValueClass : public DNBRegisterValue {
22 #ifdef __cplusplus
23   DNBRegisterValueClass(const DNBRegisterInfo *regInfo = NULL);
24   void Clear();
25   void Dump(const char *pre, const char *post) const;
26   bool IsValid() const;
27 #endif
28 };
29 
30 #endif
31