[PATCH] D54472: Disable invalid isPodLike<> specialization
serge via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 28 01:47:19 PST 2018
serge-sans-paille added a comment.
Simple ABI breakage reproducer:
compile the following codes and run nm on the generated objects, with clang 6 and gcc 4.8
#include <llvm/ADT/StringRef.h>
#include <llvm/ADT/SmallVector.h>
llvm::SmallVector<llvm::StringRef, 4> ff;
the list of symbol differ because a different SmallVector specialization is used...
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54472/new/
https://reviews.llvm.org/D54472
More information about the llvm-commits
mailing list