diff options
author | Ehud Katz <ehudkatz@gmail.com> | 2020-02-12 14:13:14 +0200 |
---|---|---|
committer | Ehud Katz <ehudkatz@gmail.com> | 2020-02-12 14:13:14 +0200 |
commit | 167c42849099fa8cf646e49efe314571979339dc (patch) | |
tree | 491b82ea9372a2300cb240363845dbf42bbfa610 /llvm/unittests/Analysis/TargetLibraryInfoTest.cpp | |
parent | 3bda9059b88b7f6b5e108603c449df0591adab83 (diff) | |
download | llvm-167c42849099fa8cf646e49efe314571979339dc.zip llvm-167c42849099fa8cf646e49efe314571979339dc.tar.gz llvm-167c42849099fa8cf646e49efe314571979339dc.tar.bz2 |
[unittests] Fix TargetLibraryInfoTest.ValidProto
Diffstat (limited to 'llvm/unittests/Analysis/TargetLibraryInfoTest.cpp')
-rw-r--r-- | llvm/unittests/Analysis/TargetLibraryInfoTest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp b/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp index 965983f..af0ee63 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" |