File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
clang/include/clang/Analysis/Analyses/LifetimeSafety Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // TODO: Complete me.
8
+ //
9
+ // This file defines the LifetimeChecker, which detects use-after-free errors
10
+ // by checking if live origins hold loans that have expired. It combines the
11
+ // results of loan propagation and liveness analysis to report violations with
12
+ // appropriate confidence levels.
13
+ //
9
14
// ===----------------------------------------------------------------------===//
10
15
#ifndef LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_CHECKER_H
11
16
#define LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_CHECKER_H
You can’t perform that action at this time.
0 commit comments