diff options
Diffstat (limited to 'llvm/tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | llvm/tools/llvm-as/llvm-as.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-as/llvm-as.cpp b/llvm/tools/llvm-as/llvm-as.cpp index e6d4780..ef1c50fc 100644 --- a/llvm/tools/llvm-as/llvm-as.cpp +++ b/llvm/tools/llvm-as/llvm-as.cpp @@ -121,7 +121,7 @@ int main(int argc, char **argv) { // Parse the file now... SMDiagnostic Err; - auto SetDataLayout = [](StringRef) -> std::optional<std::string> { + auto SetDataLayout = [](StringRef, StringRef) -> std::optional<std::string> { if (ClDataLayout.empty()) return std::nullopt; return ClDataLayout; |