aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
diff options
context:
space:
mode:
authorNikita Popov <npopov@redhat.com>2024-06-21 08:33:40 +0200
committerNikita Popov <npopov@redhat.com>2024-06-21 08:34:04 +0200
commitf2f18459d4e77e323b08971cf9d42b3574421fa7 (patch)
treee56a13ab5961640f6ad60116218b4e43d9e085cf /llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
parent12c0281f8c73bc1aa20d1517357e0e12c3f8bb4e (diff)
downloadllvm-f2f18459d4e77e323b08971cf9d42b3574421fa7.zip
llvm-f2f18459d4e77e323b08971cf9d42b3574421fa7.tar.gz
llvm-f2f18459d4e77e323b08971cf9d42b3574421fa7.tar.bz2
Revert "Intrinsic: introduce minimumnum and maximumnum (#93841)"
As far as I can tell, this pull request was not approved, and did not go through an RFC on discourse. This reverts commit 89881480030f48f83af668175b70a9798edca2fb. This reverts commit 225d8fc8eb24fb797154c1ef6dcbe5ba033142da.
Diffstat (limited to 'llvm/unittests/Analysis/TargetLibraryInfoTest.cpp')
-rw-r--r--llvm/unittests/Analysis/TargetLibraryInfoTest.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp b/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
index 5192ebd..1fe94e2 100644
--- a/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
+++ b/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
@@ -188,12 +188,6 @@ TEST_F(TargetLibraryInfoTest, ValidProto) {
"declare double @fmin(double, double)\n"
"declare float @fminf(float, float)\n"
"declare x86_fp80 @fminl(x86_fp80, x86_fp80)\n"
- "declare double @fmaximum_num(double, double)\n"
- "declare float @fmaximum_numf(float, float)\n"
- "declare x86_fp80 @fmaximum_numl(x86_fp80, x86_fp80)\n"
- "declare double @fminimum_num(double, double)\n"
- "declare float @fminimum_numf(float, float)\n"
- "declare x86_fp80 @fminimum_numl(x86_fp80, x86_fp80)\n"
"declare double @fmod(double, double)\n"
"declare float @fmodf(float, float)\n"
"declare x86_fp80 @fmodl(x86_fp80, x86_fp80)\n"
@@ -666,4 +660,4 @@ protected:
TEST_F(TLITestAarch64, TestFrem) {
EXPECT_EQ(getScalarName(Instruction::FRem, Type::getDoubleTy(Ctx)), "fmod");
EXPECT_EQ(getScalarName(Instruction::FRem, Type::getFloatTy(Ctx)), "fmodf");
-}
+} \ No newline at end of file