forked from OSchip/llvm-project
[llvm-dwp] Simplify FileCheck patterns. NFC.
Take advantage of D117117 to simplify {{\[}}[[ to [[[.
This commit is contained in:
parent
013116cd70
commit
350bc5683d
|
@ -41,6 +41,6 @@ CHECK: DW_AT_GNU_dwo_id {{.*}} ([[DWOB:.*]])
|
||||||
|
|
||||||
CHECK-LABEL: .debug_cu_index
|
CHECK-LABEL: .debug_cu_index
|
||||||
CHECK: Index Signature INFO ABBREV LINE STR_OFFSETS
|
CHECK: Index Signature INFO ABBREV LINE STR_OFFSETS
|
||||||
CHECK-DAG: [[DWOC]] {{\[}}[[COFF]], [[AOFF]]) [0x0000[[CAOFF]], 0x0000[[AAOFF]]) [0x00000000, 0x00000011) [0x00000000, 0x00000018)
|
CHECK-DAG: [[DWOC]] [[[COFF]], [[AOFF]]) [0x0000[[CAOFF]], 0x0000[[AAOFF]]) [0x00000000, 0x00000011) [0x00000000, 0x00000018)
|
||||||
CHECK-DAG: [[DWOA]] {{\[}}[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000011, 0x00000022) [0x00000018, 0x00000028)
|
CHECK-DAG: [[DWOA]] [[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000011, 0x00000022) [0x00000018, 0x00000028)
|
||||||
CHECK-DAG: [[DWOB]] {{\[}}[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x000000c3) [0x00000022, 0x00000033) [0x00000028, 0x0000003c)
|
CHECK-DAG: [[DWOB]] [[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x000000c3) [0x00000022, 0x00000033) [0x00000028, 0x0000003c)
|
||||||
|
|
|
@ -69,17 +69,17 @@ TYPES: DW_AT_name {{.*}} "bar"
|
||||||
|
|
||||||
CHECK-LABEL: .debug_cu_index contents:
|
CHECK-LABEL: .debug_cu_index contents:
|
||||||
CHECK: Index Signature INFO ABBREV LINE STR_OFFSETS
|
CHECK: Index Signature INFO ABBREV LINE STR_OFFSETS
|
||||||
TYPES: 1 [[DWOA]] {{\[}}[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x0000001a) [0x00000000, 0x00000010)
|
TYPES: 1 [[DWOA]] [[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x0000001a) [0x00000000, 0x00000010)
|
||||||
TYPES: 3 [[DWOB]] {{\[}}[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x00000099) [0x0000001a, 0x00000034) [0x00000010, 0x00000024)
|
TYPES: 3 [[DWOB]] [[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x00000099) [0x0000001a, 0x00000034) [0x00000010, 0x00000024)
|
||||||
NOTYP: 3 [[DWOA]] {{\[}}[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x00000011) [0x00000000, 0x00000010)
|
NOTYP: 3 [[DWOA]] [[[AOFF]], [[BOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x00000011) [0x00000000, 0x00000010)
|
||||||
NOTYP: 4 [[DWOB]] {{\[}}[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x00000075) [0x00000011, 0x00000022) [0x00000010, 0x00000024)
|
NOTYP: 4 [[DWOB]] [[[BOFF]], [[XOFF]]) [0x0000[[BAOFF]], 0x00000075) [0x00000011, 0x00000022) [0x00000010, 0x00000024)
|
||||||
|
|
||||||
Ensure we do not create a debug_tu_index, even an empty or malformed one.
|
Ensure we do not create a debug_tu_index, even an empty or malformed one.
|
||||||
NOTYPOBJ-NOT: .debug_tu_index
|
NOTYPOBJ-NOT: .debug_tu_index
|
||||||
|
|
||||||
TYPES: Index Signature TYPES ABBREV LINE STR_OFFSETS
|
TYPES: Index Signature TYPES ABBREV LINE STR_OFFSETS
|
||||||
TYPES: 1 [[FOOSIG]] {{\[}}[[FOOUOFF]], [[BARUOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x0000001a) [0x00000000, 0x00000010)
|
TYPES: 1 [[FOOSIG]] [[[FOOUOFF]], [[BARUOFF]]) [0x0000[[AAOFF]], 0x0000[[BAOFF]]) [0x00000000, 0x0000001a) [0x00000000, 0x00000010)
|
||||||
TYPES: 4 [[BARSIG]] {{\[}}[[BARUOFF]], [[XUOFF]]) [0x0000[[BAOFF]], 0x00000099) [0x0000001a, 0x00000034) [0x00000010, 0x00000024)
|
TYPES: 4 [[BARSIG]] [[[BARUOFF]], [[XUOFF]]) [0x0000[[BAOFF]], 0x00000099) [0x0000001a, 0x00000034) [0x00000010, 0x00000024)
|
||||||
|
|
||||||
CHECK-LABEL: .debug_str.dwo contents:
|
CHECK-LABEL: .debug_str.dwo contents:
|
||||||
CHECK: "clang version
|
CHECK: "clang version
|
||||||
|
|
Loading…
Reference in New Issue