We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
source_locationt
1 parent a9e2e51 commit 83481aaCopy full SHA for 83481aa
src/util/source_location.h
@@ -151,6 +151,19 @@ class source_locationt:public irept
151
return set(ID_basic_block_covered_lines, covered_lines);
152
}
153
154
+ /// Add comment to source location as originating from removed virtual call
155
+ void set_java_removed_virtual_call()
156
+ {
157
+ set(ID_C_java_removed_virtual_call, true);
158
+ }
159
+
160
+ /// Get information about whether call originated from a removed virtual
161
+ /// function call
162
+ bool get_java_removed_virtual_call() const
163
164
+ return get_bool(ID_C_java_removed_virtual_call);
165
166
167
void set_hide()
168
{
169
set(ID_hide, true);
0 commit comments