[Alignment][NFC] Instructions::getLoadStoreAlignment
[llvm-complete.git] / test / tools / llvm-profdata / roundtrip-compress.test
blob7e495b6d95128c4a42167c655605df4219936070
1 REQUIRES: zlib
2 # Round trip from text --> compressed extbinary --> text
3 RUN: llvm-profdata merge --sample --extbinary -compress-all-sections -output=%t.1.profdata %S/Inputs/sample-profile.proftext
4 RUN: llvm-profdata merge --sample --text -output=%t.1.proftext %t.1.profdata
5 RUN: diff %t.1.proftext %S/Inputs/sample-profile.proftext
6 # Round trip from text --> binary --> compressed extbinary --> text
7 RUN: llvm-profdata merge --sample --binary -output=%t.2.profdata %S/Inputs/sample-profile.proftext
8 RUN: llvm-profdata merge --sample --extbinary -compress-all-sections -output=%t.3.profdata %t.2.profdata
9 RUN: llvm-profdata merge --sample --text -output=%t.2.proftext %t.3.profdata
10 RUN: diff %t.2.proftext %S/Inputs/sample-profile.proftext