1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

[llvm-dwarfdump] Fix a typo: witin -> within

This commit is contained in:
Fangrui Song 2020-08-20 14:11:08 -07:00
parent 3f612e225b
commit 4d9361b2f3
4 changed files with 8 additions and 8 deletions

View File

@ -82,8 +82,8 @@ CHECK: "#source variables with location":22
CHECK: "#call site entries":7
CHECK: "sum_all_variables(#bytes in parent scope)":2817
CHECK: "sum_all_variables(#bytes in parent scope covered by DW_AT_location)":1160
CHECK: "#bytes witin functions":594
CHECK: "#bytes witin inlined functions":345
CHECK: "#bytes within functions":594
CHECK: "#bytes within inlined functions":345
CHECK: "#params":12
CHECK: "#params with source location":12
CHECK: "#params with type":12

View File

@ -77,8 +77,8 @@ CHECK: "#source variables with location":24
CHECK: "#call site entries":8
CHECK: "sum_all_variables(#bytes in parent scope)":3072
CHECK: "sum_all_variables(#bytes in parent scope covered by DW_AT_location)":1188
CHECK: "#bytes witin functions":636
CHECK: "#bytes witin inlined functions":388
CHECK: "#bytes within functions":636
CHECK: "#bytes within inlined functions":388
CHECK: "#params":13
CHECK: "#params with source location":13
CHECK: "#params with type":13

View File

@ -52,8 +52,8 @@
; CHECK-NOT: "sum_all_local_vars(#bytes in parent scope covered by DW_AT_location)":0
; CHECK-NOT: "sum_all_local_vars(#bytes in parent scope covered by DW_AT_location)":[[BYTES]]
; CHECK: "sum_all_local_vars(#bytes in parent scope covered by DW_AT_location)":
; CHECK: "#bytes witin functions":[[FUNCSIZE:[0-9]+]]
; CHECK: "#bytes witin inlined functions":[[INLINESIZE:[0-9]+]]
; CHECK: "#bytes within functions":[[FUNCSIZE:[0-9]+]]
; CHECK: "#bytes within inlined functions":[[INLINESIZE:[0-9]+]]
; CHECK: "#bytes in __debug_info":459
; CHECK: "#bytes in __debug_loc":35
; CHECK: "#bytes in __debug_abbrev":384

View File

@ -648,8 +648,8 @@ bool dwarfdump::collectStatsForObjectFile(ObjectFile &Obj, DWARFContext &DICtx,
"DW_OP_entry_value)",
GlobalStats.LocalVarScopeEntryValueBytesCovered);
printDatum(J, "#bytes witin functions", GlobalStats.FunctionSize);
printDatum(J, "#bytes witin inlined functions",
printDatum(J, "#bytes within functions", GlobalStats.FunctionSize);
printDatum(J, "#bytes within inlined functions",
GlobalStats.InlineFunctionSize);
// Print the summary for formal parameters.