diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:01:22 +0000 |
commit | 71d5a2540a98c81f5bcaeb48805e0e2881f530ef (patch) | |
tree | 5343938942df402b49ec7300a1c25a2d4ccd5821 /lib/LTO/UpdateCompilerUsed.cpp | |
parent | 31bbf64f3a4974a2d6c8b3b27ad2f519caf74057 (diff) |
Diffstat (limited to 'lib/LTO/UpdateCompilerUsed.cpp')
-rw-r--r-- | lib/LTO/UpdateCompilerUsed.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/LTO/UpdateCompilerUsed.cpp b/lib/LTO/UpdateCompilerUsed.cpp index b67d9ea5989d..5165cc965038 100644 --- a/lib/LTO/UpdateCompilerUsed.cpp +++ b/lib/LTO/UpdateCompilerUsed.cpp @@ -65,7 +65,7 @@ private: // target. for (unsigned I = 0, E = static_cast<unsigned>(LibFunc::NumLibFuncs); I != E; ++I) { - LibFunc::Func F = static_cast<LibFunc::Func>(I); + LibFunc F = static_cast<LibFunc>(I); if (TLI.has(F)) Libcalls.insert(TLI.getName(F)); } |