diff options
| author | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-20 21:54:14 +0000 |
|---|---|---|
| committer | Rafael Espindola <rafael.espindola@gmail.com> | 2018-03-20 21:54:14 +0000 |
| commit | e28ff4d43fb2f48f0c679a2305ea50aef1e8a456 (patch) | |
| tree | a3640b8f8310a2854b86cb24eaa40e84b764d19c | |
| parent | f76861c231d1df75a7e9196f547ed4644656b2e5 (diff) | |
| download | bcm5719-llvm-e28ff4d43fb2f48f0c679a2305ea50aef1e8a456.tar.gz bcm5719-llvm-e28ff4d43fb2f48f0c679a2305ea50aef1e8a456.zip | |
Add CHECKs for a few declarations. NFC.
We were just missing test coverage for this.
llvm-svn: 328048
| -rw-r--r-- | clang/test/CodeGen/mingw-long-double.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGen/mingw-long-double.c b/clang/test/CodeGen/mingw-long-double.c index d344d9f5a1a..5dcd9a8bcdc 100644 --- a/clang/test/CodeGen/mingw-long-double.c +++ b/clang/test/CodeGen/mingw-long-double.c @@ -41,3 +41,7 @@ long double _Complex TestLDC(long double _Complex x) { // GNU32: define dso_local void @TestLDC({ x86_fp80, x86_fp80 }* noalias sret %agg.result, { x86_fp80, x86_fp80 }* byval align 4 %x) // GNU64: define dso_local void @TestLDC({ x86_fp80, x86_fp80 }* noalias sret %agg.result, { x86_fp80, x86_fp80 }* %x) // MSC64: define dso_local void @TestLDC({ double, double }* noalias sret %agg.result, { double, double }* %x) + +// GNU32: declare void @__mulxc3 +// GNU64: declare void @__mulxc3 +// MSC64: declare void @__muldc3 |

