We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 906de8c commit 2a899b3Copy full SHA for 2a899b3
plugins/warp/src/cache/guid.rs
@@ -155,8 +155,10 @@ impl ConstraintBuilder {
155
let guid_constraint = Constraint::from_function(&guid, Some(offset));
156
constraints.push(guid_constraint);
157
}
158
- let symbol_constraint = self.related_symbol_constraint(&function.symbol(), offset);
159
- constraints.push(symbol_constraint);
+ if let Some(symbol) = function.defined_symbol() {
+ let symbol_constraint = self.related_symbol_constraint(&symbol, offset);
160
+ constraints.push(symbol_constraint);
161
+ }
162
constraints
163
164
0 commit comments