diff options
author | Teresa Johnson <tejohnson@google.com> | 2018-05-26 03:20:06 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2018-05-26 03:20:06 +0000 |
commit | 365ed5948ee262063fe6c24b73fb975dc28bf292 (patch) | |
tree | 45687bc9e3c2589eb18418755a00097e3ed5ea5d /llvm/test/Bitcode | |
parent | 724e7a19de56d44143b9ef747d9192a283f0758d (diff) | |
download | bcm5719-llvm-365ed5948ee262063fe6c24b73fb975dc28bf292.tar.gz bcm5719-llvm-365ed5948ee262063fe6c24b73fb975dc28bf292.zip |
[ThinLTO] Fix another bot failure due to test mismatch
Don't try to match the exact GUID for private symbols, as the
hashed name includes the file path.
llvm-svn: 333337
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r-- | llvm/test/Bitcode/thinlto-function-summary-refgraph.ll | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/test/Bitcode/thinlto-function-summary-refgraph.ll b/llvm/test/Bitcode/thinlto-function-summary-refgraph.ll index a8b67a2850f..85abb062eb7 100644 --- a/llvm/test/Bitcode/thinlto-function-summary-refgraph.ll +++ b/llvm/test/Bitcode/thinlto-function-summary-refgraph.ll @@ -154,4 +154,6 @@ entry: ; DIS: ^9 = gv: (name: "llvm.ctpop.i8") ; guid = 15254915475081819833 ; DIS: ^10 = gv: (name: "main", summaries: (function: (module: ^0, flags: (linkage: external, notEligibleToImport: 0, live: 0, dsoLocal: 0), insts: 9, calls: ((callee: ^5)), refs: (^5)))) ; guid = 15822663052811949562 ; DIS: ^11 = gv: (name: "bar", summaries: (variable: (module: ^0, flags: (linkage: external, notEligibleToImport: 0, live: 0, dsoLocal: 0), refs: (^5)))) ; guid = 16434608426314478903 -; DIS: ^12 = gv: (name: "Y", summaries: (function: (module: ^0, flags: (linkage: private, notEligibleToImport: 0, live: 0, dsoLocal: 1), insts: 14, calls: ((callee: ^8))))) ; guid = 18057131226797195731 +; Don't try to match the exact GUID. Since it is private, the file path +; will get hashed, and that will be test dependent. +; DIS: ^12 = gv: (name: "Y", summaries: (function: (module: ^0, flags: (linkage: private, notEligibleToImport: 0, live: 0, dsoLocal: 1), insts: 14, calls: ((callee: ^8))))) ; guid = |