1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Change the Interval type to signed in ImmutableIntervalMap.h.

llvm-svn: 110562
This commit is contained in:
Zhongxing Xu 2010-08-09 03:43:39 +00:00
parent 9814c3c7a9
commit d955bbe69b

View File

@ -16,14 +16,14 @@ namespace llvm {
class Interval {
private:
uint64_t Start;
uint64_t End;
int64_t Start;
int64_t End;
public:
Interval(uint64_t S, uint64_t E) : Start(S), End(E) {}
Interval(int64_t S, int64_t E) : Start(S), End(E) {}
uint64_t getStart() const { return Start; }
uint64_t getEnd() const { return End; }
int64_t getStart() const { return Start; }
int64_t getEnd() const { return End; }
};
template <typename T>