mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[LV] Fix signed/unsigned comparison warning.
llvm-svn: 348949
This commit is contained in:
parent
d0ff6ced87
commit
b72e26000d
@ -114,7 +114,8 @@ public:
|
||||
unsigned getInterleave() const { return Interleave.Value; }
|
||||
unsigned getIsVectorized() const { return IsVectorized.Value; }
|
||||
enum ForceKind getForce() const {
|
||||
if (Force.Value == FK_Undefined && hasDisableAllTransformsHint(TheLoop))
|
||||
if ((ForceKind)Force.Value == FK_Undefined &&
|
||||
hasDisableAllTransformsHint(TheLoop))
|
||||
return FK_Disabled;
|
||||
return (ForceKind)Force.Value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user