[libcxx-commits] [PATCH] D66614: Add inline to uflow and underflow

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Sep 4 10:07:46 PDT 2019


ldionne added a comment.

Normally, `inline` is used to control the linkage of a function, so that it is ODR-deduplicated across TUs. Correctness of the program is the only thing it should be used for, if we rely on what optimizer folks tell us (e.g. in conferences).

For that reason, my first reaction would be to consider this failed optimization an optimizer bug, not a library bug.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D66614/new/

https://reviews.llvm.org/D66614





More information about the libcxx-commits mailing list