[llvm] Avoid need for SLocEntryLoaded BitVector (PR #67960)
Vassil Vassilev via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 3 07:38:11 PDT 2023
================
@@ -489,6 +490,8 @@ class SLocEntry {
bool isExpansion() const { return IsExpansion; }
bool isFile() const { return !isExpansion(); }
+ bool isLoaded() const { return Loaded; }
+ void setLoaded(bool Value) { Loaded = Value; }
----------------
vgvassilev wrote:
```suggestion
bool isLoaded() const { return IsLoaded; }
void setLoaded(bool Value) { IsLoaded = Value; }
```
https://github.com/llvm/llvm-project/pull/67960
More information about the llvm-commits
mailing list