Skip to content
Snippets Groups Projects
Commit fb63bc20 authored by Richard Trieu's avatar Richard Trieu
Browse files

Fix test from r203061

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@203062 91177308-0d34-0410-b5e6-96231b3b80d8
parent aaeba6fb
No related branches found
No related tags found
No related merge requests found
......@@ -2,12 +2,12 @@
extern "C" {
int abs(int);
long labs(long);
double fabs(double);
}
using ::labs;
using ::fabs;
long test(long x) {
double test(double x) {
return ::abs(x);
// expected-warning@-1{{using integer absolute value function 'abs' when argument is of floating point type}}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment