[llvm] 167c428 - [unittests] Fix TargetLibraryInfoTest.ValidProto

Ehud Katz via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 12 04:13:39 PST 2020


Author: Ehud Katz
Date: 2020-02-12T14:13:14+02:00
New Revision: 167c42849099fa8cf646e49efe314571979339dc

URL: https://github.com/llvm/llvm-project/commit/167c42849099fa8cf646e49efe314571979339dc
DIFF: https://github.com/llvm/llvm-project/commit/167c42849099fa8cf646e49efe314571979339dc.diff

LOG: [unittests] Fix TargetLibraryInfoTest.ValidProto

Added: 
    

Modified: 
    llvm/unittests/Analysis/TargetLibraryInfoTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp b/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
index 965983f9f617..af0ee631ee12 100644
--- a/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
+++ b/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
@@ -262,6 +262,9 @@ TEST_F(TargetLibraryInfoTest, ValidProto) {
       "declare i64 @readlink(i8*, i8*, i64)\n"
       "declare i8* @realloc(i8*, i64)\n"
       "declare i8* @reallocf(i8*, i64)\n"
+      "declare double @remainder(double, double)\n"
+      "declare float @remainderf(float, float)\n"
+      "declare x86_fp80 @remainderl(x86_fp80, x86_fp80)\n"
       "declare i32 @remove(i8*)\n"
       "declare i32 @rename(i8*, i8*)\n"
       "declare void @rewind(%struct*)\n"


        


More information about the llvm-commits mailing list