]> granicus.if.org Git - llvm/commitdiff
Remove accidentally target-dependent test and pacify bots.
authorMichael Kuperstein <mkuper@google.com>
Wed, 4 Jan 2017 21:08:53 +0000 (21:08 +0000)
committerMichael Kuperstein <mkuper@google.com>
Wed, 4 Jan 2017 21:08:53 +0000 (21:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291004 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/PartiallyInlineLibCalls/good-prototype.ll [deleted file]

diff --git a/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll b/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll
deleted file mode 100644 (file)
index ed97505..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-; RUN: opt -S -partially-inline-libcalls < %s | FileCheck %s
-; RUN: opt -S -passes=partially-inline-libcalls < %s | FileCheck %s
-
-target triple = "x86_64-unknown-linux-gnu"
-
-define float @f(float %val) {
-; CHECK: @f
-; CHECK: entry:
-; CHECK-NEXT: %[[RES:.+]] = tail call float @sqrtf(float %val) #0
-; CHECK-NEXT: %[[CMP:.+]] = fcmp oeq float %[[RES]], %[[RES]]
-; CHECK-NEXT: br i1 %[[CMP]], label %[[EXIT:.+]], label %[[CALL:.+]]
-; CHECK: [[CALL]]:
-; CHECK-NEXT: %[[RES2:.+]] = tail call float @sqrtf(float %val){{$}}
-; CHECK-NEXT: br label %[[EXIT]]
-; CHECK: [[EXIT]]:
-; CHECK-NEXT: %[[RET:.+]] = phi float [ %[[RES]], %entry ], [ %[[RES2]], %[[CALL]] ]
-; CHECK-NEXT: ret float %[[RET]]
-entry:
-  %res = tail call float @sqrtf(float %val)
-  ret float %res
-}
-
-declare float @sqrtf(float)