summaryrefslogtreecommitdiffstats
path: root/source/compiler-core/slang-llvm-compiler.cpp
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-10-29 14:49:26 +0800
committerGitHub <noreply@github.com>2024-10-29 14:49:26 +0800
commitf65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 (patch)
treeea1d61342cd29368e19135000ec2948813096205 /source/compiler-core/slang-llvm-compiler.cpp
parenta729c15e9dce9f5116a38afc66329ab2ca4cea54 (diff)
format
* format * Minor test fixes * enable checking cpp format in ci
Diffstat (limited to 'source/compiler-core/slang-llvm-compiler.cpp')
-rw-r--r--source/compiler-core/slang-llvm-compiler.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/source/compiler-core/slang-llvm-compiler.cpp b/source/compiler-core/slang-llvm-compiler.cpp
index 3d24d3aa1..457268b98 100644
--- a/source/compiler-core/slang-llvm-compiler.cpp
+++ b/source/compiler-core/slang-llvm-compiler.cpp
@@ -6,11 +6,15 @@
namespace Slang
{
-/* static */SlangResult LLVMDownstreamCompilerUtil::locateCompilers(const String& path, ISlangSharedLibraryLoader* loader, DownstreamCompilerSet* set)
+/* static */ SlangResult LLVMDownstreamCompilerUtil::locateCompilers(
+ const String& path,
+ ISlangSharedLibraryLoader* loader,
+ DownstreamCompilerSet* set)
{
ComPtr<ISlangSharedLibrary> library;
- SLANG_RETURN_ON_FAIL(DownstreamCompilerUtil::loadSharedLibrary(path, loader, nullptr, "slang-llvm", library));
+ SLANG_RETURN_ON_FAIL(
+ DownstreamCompilerUtil::loadSharedLibrary(path, loader, nullptr, "slang-llvm", library));
SLANG_ASSERT(library);
if (!library)
@@ -18,14 +22,17 @@ namespace Slang
return SLANG_FAIL;
}
- typedef SlangResult(*CreateDownstreamCompilerFunc)(const Guid& intf, IDownstreamCompiler** outCompiler);
+ typedef SlangResult (
+ *CreateDownstreamCompilerFunc)(const Guid& intf, IDownstreamCompiler** outCompiler);
ComPtr<IDownstreamCompiler> downstreamCompiler;
// Only accept V4, so we can update IArtifact without breaking anything
- if (auto fnV4 = (CreateDownstreamCompilerFunc)library->findFuncByName("createLLVMDownstreamCompiler_V4"))
+ if (auto fnV4 = (CreateDownstreamCompilerFunc)library->findFuncByName(
+ "createLLVMDownstreamCompiler_V4"))
{
- SLANG_RETURN_ON_FAIL(fnV4(IDownstreamCompiler::getTypeGuid(), downstreamCompiler.writeRef()));
+ SLANG_RETURN_ON_FAIL(
+ fnV4(IDownstreamCompiler::getTypeGuid(), downstreamCompiler.writeRef()));
}
else
{
@@ -37,4 +44,4 @@ namespace Slang
return SLANG_OK;
}
-}
+} // namespace Slang