Changeset View
Changeset View
Standalone View
Standalone View
test/tools/llvm-dwp/X86/type_dedup.test
RUN: llvm-dwp %p/../Inputs/type_dedup/a.dwo %p/../Inputs/type_dedup/b.dwo -o %t | RUN: llvm-dwp %p/../Inputs/type_dedup/a.dwo %p/../Inputs/type_dedup/b.dwo -o %t | ||||
RUN: llvm-dwarfdump %t | FileCheck %s | RUN: llvm-dwarfdump %t | FileCheck %s | ||||
RUN: llvm-dwp %p/../Inputs/type_dedup/b.dwo -o %T/b.dwp | RUN: llvm-dwp %p/../Inputs/type_dedup/b.dwo -o %tb.dwp | ||||
RUN: llvm-dwp %p/../Inputs/type_dedup/a.dwo %T/b.dwp -o %t | RUN: llvm-dwp %p/../Inputs/type_dedup/a.dwo %tb.dwp -o %t | ||||
RUN: llvm-dwarfdump %t | FileCheck %s | RUN: llvm-dwarfdump %t | FileCheck %s | ||||
a.cpp: | a.cpp: | ||||
struct common { }; | struct common { }; | ||||
common a1; | common a1; | ||||
struct adistinct { }; | struct adistinct { }; | ||||
adistinct a2; | adistinct a2; | ||||
Show All 26 Lines |