From 4d34bdb145dc17f621c1907a89ea923c3760231d Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Wed, 29 Nov 2023 10:13:12 -0800 Subject: [PATCH] Integrate LLVM at llvm/llvm-project@3287ae8f6520 Updates LLVM usage to match [3287ae8f6520](https://github.com/llvm/llvm-project/commit/3287ae8f6520) PiperOrigin-RevId: 586379104 Change-Id: Id69e27932def712bbb0f4a58112dfeb5b4f76275 --- sandboxed_api/tools/generator2/code_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandboxed_api/tools/generator2/code_test.py b/sandboxed_api/tools/generator2/code_test.py index de74485..8ef6057 100644 --- a/sandboxed_api/tools/generator2/code_test.py +++ b/sandboxed_api/tools/generator2/code_test.py @@ -89,7 +89,7 @@ class CodeAnalysisTest(parameterized.TestCase): if x.kind != cindex.CursorKind.MACRO_DEFINITION ] self.assertListEqual(cursor_kinds, [ - cindex.CursorKind.TRANSLATION_UNIT, cindex.CursorKind.UNEXPOSED_DECL, + cindex.CursorKind.TRANSLATION_UNIT, cindex.CursorKind.LINKAGE_SPEC, cindex.CursorKind.FUNCTION_DECL, cindex.CursorKind.PARM_DECL ])