File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
include/swift/SILOptimizer/Analysis Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 22
22
using swift::RetainObserveKind;
23
23
24
24
namespace {
25
- // / A key used for the AliasAnalysis cache.
26
- // /
27
- // / This struct represents the argument list to the method 'alias'. The two
28
- // / SILValue pointers are mapped to size_t indices because we need an
29
- // / efficient way to invalidate them (the mechanism is described below). The
30
- // / Type arguments are translated to void* because their underlying storage is
31
- // / opaque pointers that never goes away.
25
+
26
+ // / A key used for the AliasAnalysis cache.
27
+ // /
28
+ // / This struct represents the argument list to the method 'alias'. The two
29
+ // / SILValue pointers are mapped to size_t indices because we need an
30
+ // / efficient way to invalidate them (the mechanism is described below). The
31
+ // / Type arguments are translated to void* because their underlying storage is
32
+ // / opaque pointers that never goes away.
32
33
struct AliasKeyTy {
33
34
// The SILValue pair:
34
35
size_t V1, V2;
You can’t perform that action at this time.
0 commit comments