[llvm] r320903 - Add another missing -enable-import-metadata to test

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 15 17:35:37 PST 2017


Author: tejohnson
Date: Fri Dec 15 17:35:36 2017
New Revision: 320903

URL: http://llvm.org/viewvc/llvm-project?rev=320903&view=rev
Log:
Add another missing -enable-import-metadata to test

r320895 modified a test so that it needs -enable-import-metadata which
is false by default for NDEBUG, found another place that needs this
added.

Modified:
    llvm/trunk/test/ThinLTO/X86/distributed_import.ll

Modified: llvm/trunk/test/ThinLTO/X86/distributed_import.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ThinLTO/X86/distributed_import.ll?rev=320903&r1=320902&r2=320903&view=diff
==============================================================================
--- llvm/trunk/test/ThinLTO/X86/distributed_import.ll (original)
+++ llvm/trunk/test/ThinLTO/X86/distributed_import.ll Fri Dec 15 17:35:36 2017
@@ -15,7 +15,7 @@
 ; RUN:     -r=%t2.bc,g,px \
 ; RUN:     -r=%t2.bc,analias,px \
 ; RUN:     -r=%t2.bc,aliasee,px
-; RUN: opt -function-import -import-all-index -summary-file %t1.bc.thinlto.bc %t1.bc -o %t1.out
+; RUN: opt -function-import -import-all-index -enable-import-metadata -summary-file %t1.bc.thinlto.bc %t1.bc -o %t1.out
 ; RUN: opt -function-import -import-all-index -summary-file %t2.bc.thinlto.bc %t2.bc -o %t2.out
 ; RUN: llvm-dis -o - %t1.out | FileCheck %s --check-prefix=IMPORT
 ; RUN: llvm-dis -o - %t2.out | FileCheck %s --check-prefix=EXPORT




More information about the llvm-commits mailing list