diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2023-11-01 12:11:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-01 12:11:37 +0100 |
| commit | 4d498b668a1a3fdee1aa9cca08bf28fca4a29472 (patch) | |
| tree | 11584880debc2424baa33191cfa6b9602ee4911d /src/llvm_backend.cpp | |
| parent | 62d0b0ae72bc858ed77876d097663eac4f157ab9 (diff) | |
| parent | 9b68671082fc1d20f65da1ed56fbcc3eb45296ca (diff) | |
Merge pull request #2910 from laytan/fix-empty-pass-because-trailing-comma
Fix empty pass because of trailing comma
Diffstat (limited to 'src/llvm_backend.cpp')
| -rw-r--r-- | src/llvm_backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend.cpp b/src/llvm_backend.cpp index 513b40a4d..276abc2d4 100644 --- a/src/llvm_backend.cpp +++ b/src/llvm_backend.cpp @@ -1827,7 +1827,7 @@ cgscc( function-attrs, function( require<should-not-run-function-passes> - ), + ) ) ), deadargelim, |