diff options
author | Teresa Johnson <tejohnson@google.com> | 2017-09-13 15:35:35 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2017-09-13 15:35:35 +0000 |
commit | b1bb468aa9aaadb36bfeee436ac37e6e7041be81 (patch) | |
tree | f558cd4f6879b5e841345f6aefb36453ff957d6f | |
parent | c05609ca36e7269b73f982725b59c48a5fa68a2c (diff) | |
download | bcm5719-llvm-b1bb468aa9aaadb36bfeee436ac37e6e7041be81.tar.gz bcm5719-llvm-b1bb468aa9aaadb36bfeee436ac37e6e7041be81.zip |
Fix bot failures by requiring x86 target in new test
The test added in r313151 requires a target triple since it is
running through code generation. Fix bot failures by requiring
an x86 target.
llvm-svn: 313153
-rw-r--r-- | llvm/test/Transforms/PGOProfile/thinlto_samplepgo_icp2.ll | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/Transforms/PGOProfile/thinlto_samplepgo_icp2.ll b/llvm/test/Transforms/PGOProfile/thinlto_samplepgo_icp2.ll index 1e6879dc313..c1c074e75a7 100644 --- a/llvm/test/Transforms/PGOProfile/thinlto_samplepgo_icp2.ll +++ b/llvm/test/Transforms/PGOProfile/thinlto_samplepgo_icp2.ll @@ -6,6 +6,8 @@ ; need adjustment (in that case _ZL3foov should not be imported/promoted, ; and _ZL3barv can be internalized/removed). +; REQUIRES: x86-registered-target + ; Do setup work for all below tests: generate bitcode and combined index ; RUN: opt -module-summary %s -o %t.bc ; RUN: opt -module-summary %p/Inputs/thinlto_samplepgo_icp2a.ll -o %t2a.bc |