Skip to content

Commit

Permalink
Fix a code style formatting error.
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCummins committed Feb 17, 2022
1 parent 79270ba commit 588fd7d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compiler_gym/envs/llvm/service/Benchmark.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ std::unique_ptr<llvm::Module> makeModule(llvm::LLVMContext& context, const Bitco
std::unique_ptr<llvm::Module> module = std::move(moduleOrError.get());

if (!module) {
*status = Status(StatusCode::INTERNAL,
"llvm::parseBitcodeFile return null");
*status = Status(StatusCode::INTERNAL, "llvm::parseBitcodeFile return null");
return nullptr;
}

Expand Down

0 comments on commit 588fd7d

Please sign in to comment.