diff options
author | Teresa Johnson <tejohnson@google.com> | 2016-03-15 00:04:37 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2016-03-15 00:04:37 +0000 |
commit | 26ab5772b058fcddabfecb6736a3b78c67bc1751 (patch) | |
tree | 89b82d60f6e4ef3d7970cf1dc620c4f3a78bad2e /llvm/test/Bitcode/thinlto-function-summary.ll | |
parent | da8b3f1914e0cc4eb25af376583a23e660718115 (diff) | |
download | bcm5719-llvm-26ab5772b058fcddabfecb6736a3b78c67bc1751.tar.gz bcm5719-llvm-26ab5772b058fcddabfecb6736a3b78c67bc1751.zip |
[ThinLTO] Renaming of function index to module summary index (NFC)
(Resubmitting after fixing missing file issue)
With the changes in r263275, there are now more than just functions in
the summary. Completed the renaming of data structures (started in
r263275) to reflect the wider scope. In particular, changed the
FunctionIndex* data structures to ModuleIndex*, and renamed related
variables and comments. Also renamed the files to reflect the changes.
A companion clang patch will immediately succeed this patch to reflect
this renaming.
llvm-svn: 263513
Diffstat (limited to 'llvm/test/Bitcode/thinlto-function-summary.ll')
-rw-r--r-- | llvm/test/Bitcode/thinlto-function-summary.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Bitcode/thinlto-function-summary.ll b/llvm/test/Bitcode/thinlto-function-summary.ll index 5f08e55124f..511b1c31409 100644 --- a/llvm/test/Bitcode/thinlto-function-summary.ll +++ b/llvm/test/Bitcode/thinlto-function-summary.ll @@ -1,7 +1,7 @@ -; RUN: llvm-as -function-summary < %s | llvm-bcanalyzer -dump | FileCheck %s -check-prefix=BC -; Check for function summary block/records. +; RUN: llvm-as -module-summary < %s | llvm-bcanalyzer -dump | FileCheck %s -check-prefix=BC +; Check for summary block/records. -; Check the value ids in the function summary entries against the +; Check the value ids in the summary entries against the ; same in the ValueSumbolTable, to ensure the ordering is stable. ; Also check the linkage field on the summary entries. ; BC: <GLOBALVAL_SUMMARY_BLOCK @@ -14,7 +14,7 @@ ; BC-NEXT: <FNENTRY {{.*}} op0=2 {{.*}}> record string = 'bar' ; BC-NEXT: <FNENTRY {{.*}} op0=4 {{.*}}> record string = 'f' -; RUN: llvm-as -function-summary < %s | llvm-dis | FileCheck %s +; RUN: llvm-as -module-summary < %s | llvm-dis | FileCheck %s ; Check that this round-trips correctly. ; ModuleID = '<stdin>' |