Skip to content

QL4QL: Add test for ql/inline-overlay-caller query #19810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
| Test.qll:7:11:7:13 | ClasslessPredicate foo | This possibly local non-private inline predicate will not be inlined across the overlay frontier. This may negatively affect evaluation performance. Consider adding an `overlay[caller]` annotation to allow inlining across the overlay frontier. Note that adding an `overlay[caller]` annotation affects semantics under overlay evaluation. |
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
queries/overlay/InlineOverlayCaller.ql
14 changes: 14 additions & 0 deletions ql/ql/test/queries/overlay/InlineOverlayCaller/Test.qll
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
overlay[local?]
module;

import ql

pragma[inline]
predicate foo(int x) { x = 42 }

overlay[caller]
pragma[inline]
predicate bar(int x) { x = 43 }

pragma[inline]
private predicate baz(int x) { x = 44 }
Loading