1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Don't use int8_t, that requires DataTypes.h

llvm-svn: 73682
This commit is contained in:
Chris Lattner 2009-06-18 04:56:53 +00:00
parent f71490c586
commit 47e29d1422

View File

@ -23,7 +23,6 @@
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Allocator.h"
#include "llvm/Support/DataTypes.h"
#include <iosfwd>
#include <cassert>
#include <climits>
@ -52,13 +51,15 @@ namespace llvm {
class VNInfo {
private:
static const uint8_t HAS_PHI_KILL = 1,
REDEF_BY_EC = 1 << 1,
IS_PHI_DEF = 1 << 2,
IS_UNUSED = 1 << 3,
IS_DEF_ACCURATE = 1 << 4;
enum {
HAS_PHI_KILL = 1,
REDEF_BY_EC = 1 << 1,
IS_PHI_DEF = 1 << 2,
IS_UNUSED = 1 << 3,
IS_DEF_ACCURATE = 1 << 4
};
uint8_t flags;
unsigned char flags;
public:
/// The ID number of this value.