diff options
author | Fangrui Song <maskray@google.com> | 2018-09-30 21:41:11 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2018-09-30 21:41:11 +0000 |
commit | 1d38c13f6e22889624df47b74bf058cf1864b392 (patch) | |
tree | ec14ba7c7bbc589249302106ae612aa0520351d4 /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | f21083870d1c20b2fd51b08c397ae7da13bd6341 (diff) | |
download | bcm5719-llvm-1d38c13f6e22889624df47b74bf058cf1864b392.tar.gz bcm5719-llvm-1d38c13f6e22889624df47b74bf058cf1864b392.zip |
Use the container form llvm::sort(C, ...)
There are a few leftovers of rC343147 that are not (\w+)\.begin but in
the form of ([-[:alnum:]>.]+)\.begin or spanning two lines. Change them
to use the container form in this commit. The 12 occurrences have been
inspected manually for safety.
llvm-svn: 343425
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp index c2fb4797ccd..dbea1fc7112 100644 --- a/clang/lib/CodeGen/CodeGenModule.cpp +++ b/clang/lib/CodeGen/CodeGenModule.cpp @@ -2554,9 +2554,8 @@ void CodeGenModule::emitCPUDispatchDefinition(GlobalDecl GD) { } llvm::sort( - Options.begin(), Options.end(), - [](const CodeGenFunction::MultiVersionResolverOption &LHS, - const CodeGenFunction::MultiVersionResolverOption &RHS) { + Options, [](const CodeGenFunction::MultiVersionResolverOption &LHS, + const CodeGenFunction::MultiVersionResolverOption &RHS) { return CodeGenFunction::GetX86CpuSupportsMask(LHS.Conditions.Features) > CodeGenFunction::GetX86CpuSupportsMask(RHS.Conditions.Features); }); |