diff options
author | Michael Kuperstein <mkuper@google.com> | 2017-01-04 21:08:53 +0000 |
---|---|---|
committer | Michael Kuperstein <mkuper@google.com> | 2017-01-04 21:08:53 +0000 |
commit | 020af9c25869039e8da86acfb42814f0b1f40d5f (patch) | |
tree | 2602e34c24b357f78b6d1197504fe5891a85143c | |
parent | b2f951d87a27fdfb19544d11a6e5a568dd8de0e1 (diff) | |
download | bcm5719-llvm-020af9c25869039e8da86acfb42814f0b1f40d5f.tar.gz bcm5719-llvm-020af9c25869039e8da86acfb42814f0b1f40d5f.zip |
Remove accidentally target-dependent test and pacify bots.
llvm-svn: 291004
-rw-r--r-- | llvm/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/llvm/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll b/llvm/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll deleted file mode 100644 index ed975052732..00000000000 --- a/llvm/test/Transforms/PartiallyInlineLibCalls/good-prototype.ll +++ /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) |