diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-04-01 15:29:27 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-04-01 15:29:27 +0000 |
commit | a5f806e59964ef9b4992a60bdadb076025c0bec3 (patch) | |
tree | 6fb5b74c2d4e3cfa92fd774812b87514227e6bbf | |
parent | dc9ff755546b41bdcc4a563c7303b49d72d69535 (diff) | |
download | bcm5719-llvm-a5f806e59964ef9b4992a60bdadb076025c0bec3.tar.gz bcm5719-llvm-a5f806e59964ef9b4992a60bdadb076025c0bec3.zip |
InstrProf: Remove LTO dependency from test
The -flto flag relies on linker features that are not available on all
platforms.
<rdar://problem/16458307>
llvm-svn: 205318
-rw-r--r-- | compiler-rt/test/profile/instrprof-basic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/profile/instrprof-basic.c b/compiler-rt/test/profile/instrprof-basic.c index 0732d84df6f..b84c96dab2c 100644 --- a/compiler-rt/test/profile/instrprof-basic.c +++ b/compiler-rt/test/profile/instrprof-basic.c @@ -1,4 +1,4 @@ -// RUN: %clang_profgen -o %t -O3 -flto %s +// RUN: %clang_profgen -o %t -O3 %s // RUN: env LLVM_PROFILE_FILE=%t.profraw %t // RUN: llvm-profdata merge -o %t.profdata %t.profraw // RUN: %clang_profuse=%t.profdata -o - -S -emit-llvm %s | FileCheck %s |