[compiler-rt] r205318 - InstrProf: Remove LTO dependency from test

Duncan P. N. Exon Smith dexonsmith at apple.com
Tue Apr 1 08:29:28 PDT 2014


Author: dexonsmith
Date: Tue Apr  1 10:29:27 2014
New Revision: 205318

URL: http://llvm.org/viewvc/llvm-project?rev=205318&view=rev
Log:
InstrProf: Remove LTO dependency from test

The -flto flag relies on linker features that are not available on all
platforms.

<rdar://problem/16458307>

Modified:
    compiler-rt/trunk/test/profile/instrprof-basic.c

Modified: compiler-rt/trunk/test/profile/instrprof-basic.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/instrprof-basic.c?rev=205318&r1=205317&r2=205318&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/instrprof-basic.c (original)
+++ compiler-rt/trunk/test/profile/instrprof-basic.c Tue Apr  1 10:29:27 2014
@@ -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





More information about the llvm-commits mailing list