Skip to content

Commit 4d68cf3

Browse files
[lldb] Use DenseMap::insert_range (NFC) (#133846)
1 parent ee3c892 commit 4d68cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ABI/X86/ABIX86.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ BaseRegToRegsMap makeBaseRegMap(bool is64bit) {
191191
// higher YMM registers (specific to amd64)
192192
YMM(8), YMM(9), YMM(10), YMM(11), YMM(12),
193193
YMM(13), YMM(14), YMM(15)}};
194-
out.insert(amd64_regs.begin(), amd64_regs.end());
194+
out.insert_range(amd64_regs);
195195
}
196196

197197
return out;

0 commit comments

Comments
 (0)