[llvm] r290460 - [PM] Remove a bunch of junk that snuck in when I failed at manipulating

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 23 15:39:31 PST 2016


Author: chandlerc
Date: Fri Dec 23 17:39:31 2016
New Revision: 290460

URL: http://llvm.org/viewvc/llvm-project?rev=290460&view=rev
Log:
[PM] Remove a bunch of junk that snuck in when I failed at manipulating
my editor to close and commit the patch. Sorry for the noise.

Modified:
    llvm/trunk/test/Transforms/Inline/always-inline.ll

Modified: llvm/trunk/test/Transforms/Inline/always-inline.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/Inline/always-inline.ll?rev=290460&r1=290459&r2=290460&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/Inline/always-inline.ll (original)
+++ llvm/trunk/test/Transforms/Inline/always-inline.ll Fri Dec 23 17:39:31 2016
@@ -266,27 +266,6 @@ $comdat12 = comdat any
 
 define linkonce void @inner12() alwaysinline comdat($comdat12) {
 ; CHECK-LABEL: @inner12(
-t :qentry:
-  ret void
-}
-
-define void @outer12() comdat($comdat12) {
-; CHECK-LABEL: @outer12(
-entry:
-  call void @inner12()
-; CHECK-NOT: call void @inner12
-
-  ret void
-; CHECK: ret void
-}
-
-; The 'inner12' and 'outer12' functions test that we don't remove functions
-; which are part of a comdat group even if they otherwise seem dead.
-$comdat12 = comdat any
-
-define linkonce void @inner12() alwaysinline comdat($comdat12) {
-; CHECK-LABEL: @inner12(
-entry:
   ret void
 }
 




More information about the llvm-commits mailing list