mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
fix a couple -Wsign-compare warnings.
llvm-svn: 129501
This commit is contained in:
parent
0b9c16295a
commit
e9409fb80a
@ -44,8 +44,8 @@ namespace {
|
||||
public:
|
||||
static char ID; // Pass ID, replacement for typeid
|
||||
LoopUnroll(int T = -1, int C = -1, int P = -1) : LoopPass(ID) {
|
||||
CurrentThreshold = (T == -1) ? UnrollThreshold : T;
|
||||
CurrentCount = (C == -1) ? UnrollCount : C;
|
||||
CurrentThreshold = (T == -1) ? UnrollThreshold : unsigned(T);
|
||||
CurrentCount = (C == -1) ? UnrollCount : unsigned(C);
|
||||
CurrentAllowPartial = (P == -1) ? UnrollAllowPartial : (bool)P;
|
||||
|
||||
UserThreshold = (T != -1) || (UnrollThreshold.getNumOccurrences() > 0);
|
||||
|
Loading…
Reference in New Issue
Block a user