LaneBitmask.h: Don't mark header functions as file local

llvm-svn: 316510
This commit is contained in:
David Blaikie 2017-10-24 21:29:17 +00:00
parent 994e907372
commit e2bf1f14b3
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ namespace llvm {
};
/// Create Printable object to print LaneBitmasks on a \ref raw_ostream.
static LLVM_ATTRIBUTE_UNUSED Printable PrintLaneMask(LaneBitmask LaneMask) {
inline Printable PrintLaneMask(LaneBitmask LaneMask) {
return Printable([LaneMask](raw_ostream &OS) {
OS << format(LaneBitmask::FormatStr, LaneMask.getAsInteger());
});