@@ -48,11 +48,6 @@ void buildTestLowerToLLVM(OpPassManager &pm,
48
48
// unrealized casts, but there needs to be the final module-wise cleanup in
49
49
// the end. Keep module-level for now.
50
50
51
- auto enableOpaquePointers = [](auto options) {
52
- options.useOpaquePointers = true ;
53
- return options;
54
- };
55
-
56
51
// Blanket-convert any remaining high-level vector ops to loops if any remain.
57
52
pm.addNestedPass <func::FuncOp>(createConvertVectorToSCFPass ());
58
53
// Blanket-convert any remaining linalg ops to loops if any remain.
@@ -67,20 +62,17 @@ void buildTestLowerToLLVM(OpPassManager &pm,
67
62
// Convert vector to LLVM (always needed).
68
63
pm.addPass (createConvertVectorToLLVMPass (
69
64
// TODO: add more options on a per-need basis.
70
- enableOpaquePointers (
71
- ConvertVectorToLLVMPassOptions{options.reassociateFPReductions })));
65
+ ConvertVectorToLLVMPassOptions{options.reassociateFPReductions }));
72
66
// Convert Math to LLVM (always needed).
73
67
pm.addNestedPass <func::FuncOp>(createConvertMathToLLVMPass ());
74
68
// Expand complicated MemRef operations before lowering them.
75
69
pm.addPass (memref::createExpandStridedMetadataPass ());
76
70
// The expansion may create affine expressions. Get rid of them.
77
71
pm.addPass (createLowerAffinePass ());
78
72
// Convert MemRef to LLVM (always needed).
79
- pm.addPass (createFinalizeMemRefToLLVMConversionPass (
80
- enableOpaquePointers (FinalizeMemRefToLLVMConversionPassOptions{})));
73
+ pm.addPass (createFinalizeMemRefToLLVMConversionPass ());
81
74
// Convert Func to LLVM (always needed).
82
- pm.addPass (createConvertFuncToLLVMPass (
83
- enableOpaquePointers (ConvertFuncToLLVMPassOptions{})));
75
+ pm.addPass (createConvertFuncToLLVMPass ());
84
76
// Convert Index to LLVM (always needed).
85
77
pm.addPass (createConvertIndexToLLVMPass ());
86
78
// Convert remaining unrealized_casts (always needed).
0 commit comments