From 2be9a150bb742987330c6de4dac23d4d2efb1ebe Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 12 May 2025 08:15:14 +0200 Subject: fix(cxxdrv): The Compiler driver shall take multiple files, instead of one. Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'dev') diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc index 62d51aa..ace6d17 100644 --- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc +++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc @@ -899,8 +899,7 @@ LIBCOMPILER_MODULE(CompilerCPlusPlusAMD64) { return kExitNO; } - auto ret = kFactory.Compile(argv_i, kMachine); - return ret; + kFactory.Compile(argv_i, kMachine); } return kExitNO; -- cgit v1.2.3