http://llvm.org/bugs/show_bug.cgi?id=10076
Bill Wendling <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |FIXED --- Comment #1 from Bill Wendling <[email protected]> 2011-08-09 04:15:37 CDT --- This looks like it's been fixed now: [Irk:llvm] clang++ -c test.cc test.cc:2:21: error: use of undeclared identifier 'abs'; did you mean 'fabs'? int main() { return abs(0); } ^~~ fabs In file included from test.cc:1: In file included from /usr/include/math.h:28: /usr/include/architecture/i386/math.h:334:16: note: 'fabs' declared here extern double fabs( double ); ^ 1 error generated. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
