Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Apr 2, 2024
1 parent 8b6a32b commit de1747b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Bitcode/Writer/BitWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ using namespace llvm;

/*===-- Operations on modules ---------------------------------------------===*/

int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) {
int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *pa_PATH) {
std::error_code EC;
raw_fd_ostream OS(Path, EC, sys::fs::OF_None);
raw_fd_ostream OS(pa_PATH, EC, sys::fs::OF_None);

if (EC)
return -1;
Expand Down

0 comments on commit de1747b

Please sign in to comment.