We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b0cba commit a6213a5Copy full SHA for a6213a5
1 file changed
llvm/lib/Transforms/Utils/Local.cpp
@@ -2056,9 +2056,8 @@ void llvm::salvageDebugInfoForDbgValues(Instruction &I,
2056
bool StackValue =
2057
DVR->getType() != DbgVariableRecord::LocationType::Declare;
2058
auto DVRLocation = DVR->location_ops();
2059
- assert(
2060
- is_contained(DVRLocation, &I) &&
2061
- "DbgRecord must use salvaged instruction as its location");
+ assert(is_contained(DVRLocation, &I) &&
+ "DbgRecord must use salvaged instruction as its location");
2062
SmallVector<Value *, 4> AdditionalValues;
2063
// 'I' may appear more than once in DVR's location ops, and each use of 'I'
2064
// must be updated in the DIExpression and potentially have additional
0 commit comments