Skip to content

Commit b96ca12

Browse files
krasimirggcopybara-github
authored andcommitted
Updates LLVM usage to match [b270525f730b](llvm/llvm-project@b270525f730b) PiperOrigin-RevId: 715353056 Change-Id: I8e1fca2d74d5b7cdd88270ea39743b64266111c2
1 parent 095e59e commit b96ca12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bazel/llvm.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def _llvm_loader_repository(repository_ctx):
5353
executable = False,
5454
)
5555

56-
LLVM_COMMIT_SHA = "35e76b6a4fc74e64bd6c91e5b9b9eb6a03aa802e"
56+
LLVM_COMMIT_SHA = "b270525f730be6e7196667925f5a9bfa153262e9"
5757

5858
def llvm_loader_repository_dependencies():
5959
# This *declares* the dependency, but it won't actually be *downloaded* unless it's used.

rs_bindings_from_cc/importers/cxx_record.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ std::vector<Field> CXXRecordDeclImporter::ImportFields(
667667
if (field_decl->isZeroSize(ictx_.ctx_)) {
668668
size = 0;
669669
} else if (field_decl->isBitField()) {
670-
size = field_decl->getBitWidthValue(ictx_.ctx_);
670+
size = field_decl->getBitWidthValue();
671671
} else {
672672
size = ictx_.ctx_.getTypeSize(field_decl->getType());
673673
}

0 commit comments

Comments
 (0)