manmanren added a comment.

This looks pretty good. Can you add a few more testing cases for templates such 
as @available inside the template function, @available enclosing the template 
instantiation?

Cheers,
Manman


================
Comment at: lib/Sema/SemaDeclAttr.cpp:6634
@@ +6633,3 @@
+  // branches.
+  if (CondVersion <= AvailabilityStack.back())
+    return Base::TraverseStmt(If->getThen()) &&
----------------
I wonder if it is better to combine this with the above if (!E->hasVersion()) 
i.e
if (!E->hasVersion() || E->getVersion() <= AvailabilityStack.back())


https://reviews.llvm.org/D23003



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

Reply via email to