Skip to content

Commit a52ac7f

Browse files
committed
Fix uninitialized field post PR #74970
1 parent fdb13cf commit a52ac7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ using LoadStorePair = std::pair<Instruction *, Instruction *>;
3333
/// instrumentation pass.
3434
class InstrProfilingLoweringPass
3535
: public PassInfoMixin<InstrProfilingLoweringPass> {
36-
const InstrProfOptions Options;
36+
const InstrProfOptions Options = {};
3737
// Is this lowering for the context-sensitive instrumentation.
3838
const bool IsCS = false;
3939

0 commit comments

Comments
 (0)