[llvm] r278743 - Remove unnecessary flag from new test

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 15 14:07:57 PDT 2016


Author: tejohnson
Date: Mon Aug 15 16:07:57 2016
New Revision: 278743

URL: http://llvm.org/viewvc/llvm-project?rev=278743&view=rev
Log:
Remove unnecessary flag from new test

Remove -disable-inlining flag that snuck into the test I added for r278739.
It doesn't have an effect in ThinLTO mode (something that should be fixed),
but in any case the checks depend on inlining currently.

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

Modified: llvm/trunk/test/ThinLTO/X86/linkonce_resolution_comdat.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ThinLTO/X86/linkonce_resolution_comdat.ll?rev=278743&r1=278742&r2=278743&view=diff
==============================================================================
--- llvm/trunk/test/ThinLTO/X86/linkonce_resolution_comdat.ll (original)
+++ llvm/trunk/test/ThinLTO/X86/linkonce_resolution_comdat.ll Mon Aug 15 16:07:57 2016
@@ -3,7 +3,7 @@
 ; verification error.
 ; RUN: opt -module-summary %s -o %t1.bc
 ; RUN: opt -module-summary %p/Inputs/linkonce_resolution_comdat.ll -o %t2.bc
-; RUN: llvm-lto -thinlto-action=run %t1.bc %t2.bc -exported-symbol=f -exported-symbol=g -disable-inlining
+; RUN: llvm-lto -thinlto-action=run %t1.bc %t2.bc -exported-symbol=f -exported-symbol=g
 
 ; RUN: llvm-nm -o - < %t1.bc.thinlto.o | FileCheck %s --check-prefix=NM1
 ; NM1: W f




More information about the llvm-commits mailing list