Skip to content

Commit f0621b3

Browse files
[Vectorize] Fix a warning
This patch fixes: llvm/lib/Transforms/Vectorize/VPlanTransforms.h:31:1: error: class 'VFRange' was previously declared as a struct; this is valid, but may result in linker errors under the Microsoft C++ ABI [-Werror,-Wmismatched-tags]
1 parent 32311a6 commit f0621b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class PredicatedScalarEvolution;
2828
class TargetLibraryInfo;
2929
class VPBuilder;
3030
class VPRecipeBuilder;
31-
class VFRange;
31+
struct VFRange;
3232

3333
extern cl::opt<bool> VerifyEachVPlan;
3434

0 commit comments

Comments
 (0)