Integrate LLVM at llvm/llvm-project@73f8ec9edb52
Updates LLVM usage to match
[73f8ec9edb52](https://github.com/llvm/llvm-project/commit/73f8ec9edb52)
PiperOrigin-RevId: 571169396
Change-Id: I0c438e7b47ca7bae3641bf7e1840efb38b7574c3
diff --git a/rs_bindings_from_cc/importer.cc b/rs_bindings_from_cc/importer.cc
index 323be7b..7401f62 100644
--- a/rs_bindings_from_cc/importer.cc
+++ b/rs_bindings_from_cc/importer.cc
@@ -394,7 +394,7 @@
void Importer::ImportFreeComments() {
clang::SourceManager& sm = ctx_.getSourceManager();
for (const auto& header : invocation_.public_headers_) {
- if (auto file = sm.getFileManager().getFile(header.IncludePath())) {
+ if (auto file = sm.getFileManager().getFileRef(header.IncludePath())) {
if (auto comments_in_file = ctx_.Comments.getCommentsInFile(
sm.getOrCreateFileID(*file, clang::SrcMgr::C_User))) {
for (const auto& [_, comment] : *comments_in_file) {