1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

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 728a415814
commit 2afa6a2927

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());
});