diff options
| author | Michael Kruse <llvm@meinersbur.de> | 2019-06-06 17:15:36 +0000 |
|---|---|---|
| committer | Michael Kruse <llvm@meinersbur.de> | 2019-06-06 17:15:36 +0000 |
| commit | bd9e810b23b7907a133664a64407df3993f2426a (patch) | |
| tree | eb8e72273682832b87970c193a31f0d008bc261a /polly/lib | |
| parent | 842c7792aaa8e137933a47beb3c0da11057277db (diff) | |
| download | bcm5719-llvm-bd9e810b23b7907a133664a64407df3993f2426a.tar.gz bcm5719-llvm-bd9e810b23b7907a133664a64407df3993f2426a.zip | |
[ScheduleTreeTransform] Silence compiler warning. NFC.
Use size_t for position which is the return type type ArrayRef::size()
it is compared to.
llvm-svn: 362724
Diffstat (limited to 'polly/lib')
| -rw-r--r-- | polly/lib/Transform/ScheduleTreeTransform.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/lib/Transform/ScheduleTreeTransform.cpp b/polly/lib/Transform/ScheduleTreeTransform.cpp index d571260affb..c3f890a3b6a 100644 --- a/polly/lib/Transform/ScheduleTreeTransform.cpp +++ b/polly/lib/Transform/ScheduleTreeTransform.cpp @@ -439,7 +439,7 @@ struct ApplyASTBuildOptions BaseTy &getBase() { return *this; } const BaseTy &getBase() const { return *this; } - int Pos; + size_t Pos; llvm::ArrayRef<isl::union_set> ASTBuildOptions; ApplyASTBuildOptions(llvm::ArrayRef<isl::union_set> ASTBuildOptions) |

