[llvm] r253717 - SamplePGO - Tweak RUN command for a test. NFC.

Diego Novillo via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 20 13:46:41 PST 2015


Author: dnovillo
Date: Fri Nov 20 15:46:41 2015
New Revision: 253717

URL: http://llvm.org/viewvc/llvm-project?rev=253717&view=rev
Log:
SamplePGO - Tweak RUN command for a test. NFC.

Modified:
    llvm/trunk/test/Transforms/SampleProfile/coverage-warning.ll

Modified: llvm/trunk/test/Transforms/SampleProfile/coverage-warning.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/SampleProfile/coverage-warning.ll?rev=253717&r1=253716&r2=253717&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/SampleProfile/coverage-warning.ll (original)
+++ llvm/trunk/test/Transforms/SampleProfile/coverage-warning.ll Fri Nov 20 15:46:41 2015
@@ -1,4 +1,4 @@
-; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/coverage-warning.prof -sample-profile-check-coverage=90 2>& 1 | FileCheck %s
+; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/coverage-warning.prof -sample-profile-check-coverage=90 -o /dev/null 2>&1 | FileCheck %s
 define i32 @foo(i32 %i) !dbg !4 {
 ; The profile has samples for line locations that are no longer present.
 ; Coverage does not reach 90%, so we should get this warning:




More information about the llvm-commits mailing list