commit | f3d3952a8c104b86ec2fcb2c41078a46e0502c25 | [log] [tgz] |
---|---|---|
author | Aaron Ballman <aaron@aaronballman.com> | Tue Jun 04 01:03:03 2013 +0000 |
committer | Aaron Ballman <aaron@aaronballman.com> | Tue Jun 04 01:03:03 2013 +0000 |
tree | 97a782190332462b85f9b1e9d740a7b45c4f67a4 | |
parent | f56a6ded63c93f75c7016d0e42d5356cdba7198c [diff] |
Silencing an MSVC warning about mixing bool and unsigned int. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183176 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/R600/AMDGPUStructurizeCFG.cpp b/lib/Target/R600/AMDGPUStructurizeCFG.cpp index bd947a5..d26783d 100644 --- a/lib/Target/R600/AMDGPUStructurizeCFG.cpp +++ b/lib/Target/R600/AMDGPUStructurizeCFG.cpp
@@ -353,7 +353,7 @@ if (Term->isConditional()) { Cond = Term->getCondition(); - if (Idx != Invert) + if (Idx != (unsigned)Invert) Cond = invert(Cond); } return Cond;