mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Don't use int8_t, that requires DataTypes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6904858ab3
commit
b7b39987bb
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user