Skip to content
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