File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
llvm/include/llvm/DWARFLinker Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -205,22 +205,25 @@ class DwarfEmitter {
205
205
206
206
using UnitListTy = std::vector<std::unique_ptr<CompileUnit>>;
207
207
208
- // / this class represents DWARF information for source file
209
- // / and it`s address map.
208
+ // / This class represents DWARF information for source file
209
+ // / and its address map.
210
210
class DWARFFile {
211
211
public:
212
212
DWARFFile (StringRef Name, DWARFContext *Dwarf, AddressesMap *Addresses,
213
213
const std::vector<std::string> &Warnings)
214
214
: FileName(Name), Dwarf(Dwarf), Addresses(Addresses), Warnings(Warnings) {
215
215
}
216
216
217
- // / object file name.
217
+ // / The object file name.
218
218
StringRef FileName;
219
- // / source DWARF information.
219
+
220
+ // / The source DWARF information.
220
221
DWARFContext *Dwarf = nullptr ;
221
- // / helpful address information(list of valid address ranges, relocations).
222
+
223
+ // / Helpful address information(list of valid address ranges, relocations).
222
224
AddressesMap *Addresses = nullptr ;
223
- // / warnings for object file.
225
+
226
+ // / Warnings for this object file.
224
227
const std::vector<std::string> &Warnings;
225
228
};
226
229
You can’t perform that action at this time.
0 commit comments