majnemer added a comment.

This looks much better. Please add a test that uses a template:

  template <typename T>
  int f(T t) { return __builtin_signbit(t); }


================
Comment at: include/clang/Basic/DiagnosticSemaKinds.td:7401-7403
@@ -7400,2 +7400,5 @@
 
+def err_builtin_signbit_wrong_argument : Error<
+  "Argument type mismatch, must be float, double or long double">;
+
 // CFString checking
----------------
Hmm, I think it would be better if you added this near 
`err_typecheck_cond_expect_int_float`, named it 
`err_typecheck_cond_expect_float`, and gave it a similar error message.


https://reviews.llvm.org/D22334



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to