diff options
Diffstat (limited to 'test/tools/llvm-lto/thinlto.ll')
| -rw-r--r-- | test/tools/llvm-lto/thinlto.ll | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/test/tools/llvm-lto/thinlto.ll b/test/tools/llvm-lto/thinlto.ll index 5bd9dd975d2d..38c4196bb256 100644 --- a/test/tools/llvm-lto/thinlto.ll +++ b/test/tools/llvm-lto/thinlto.ll @@ -1,6 +1,6 @@ ; Test combined function index generation for ThinLTO via llvm-lto. -; RUN: llvm-as -function-summary %s -o %t.o -; RUN: llvm-as -function-summary %p/Inputs/thinlto.ll -o %t2.o +; RUN: opt -module-summary %s -o %t.o +; RUN: opt -module-summary %p/Inputs/thinlto.ll -o %t2.o ; RUN: llvm-lto -thinlto -o %t3 %t.o %t2.o ; RUN: llvm-bcanalyzer -dump %t3.thinlto.bc | FileCheck %s --check-prefix=COMBINED ; RUN: not test -e %t3 @@ -9,13 +9,16 @@ ; COMBINED-NEXT: <ENTRY {{.*}} record string = '{{.*}}thinlto.ll.tmp{{.*}}.o' ; COMBINED-NEXT: <ENTRY {{.*}} record string = '{{.*}}thinlto.ll.tmp{{.*}}.o' ; COMBINED-NEXT: </MODULE_STRTAB_BLOCK -; COMBINED-NEXT: <FUNCTION_SUMMARY_BLOCK -; COMBINED-NEXT: <COMBINED_ENTRY -; COMBINED-NEXT: <COMBINED_ENTRY -; COMBINED-NEXT: </FUNCTION_SUMMARY_BLOCK +; COMBINED-NEXT: <GLOBALVAL_SUMMARY_BLOCK +; COMBINED-NEXT: <VERSION +; COMBINED-NEXT: <COMBINED +; COMBINED-NEXT: <COMBINED +; COMBINED-NEXT: </GLOBALVAL_SUMMARY_BLOCK ; COMBINED-NEXT: <VALUE_SYMTAB -; COMBINED-NEXT: <COMBINED_FNENTRY {{.*}} record string = '{{f|g}}' -; COMBINED-NEXT: <COMBINED_FNENTRY {{.*}} record string = '{{f|g}}' +; Check that the format is: op0=valueid, op1=offset, op2=funcguid, +; where funcguid is the lower 64 bits of the function name MD5. +; COMBINED-NEXT: <COMBINED_ENTRY abbrevid={{[0-9]+}} op0={{1|2}} op1={{-3706093650706652785|-5300342847281564238}} +; COMBINED-NEXT: <COMBINED_ENTRY abbrevid={{[0-9]+}} op0={{1|2}} op1={{-3706093650706652785|-5300342847281564238}} ; COMBINED-NEXT: </VALUE_SYMTAB define void @f() { |
