From 01dd3d966f52cc4df27ebe42d0b2114c172f65b3 Mon Sep 17 00:00:00 2001 From: Leny Kholodov Date: Tue, 6 Sep 2016 17:03:02 +0000 Subject: Formatting with clang-format patch r280700 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280716 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/go/llvm/DIBuilderBindings.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'bindings') diff --git a/bindings/go/llvm/DIBuilderBindings.cpp b/bindings/go/llvm/DIBuilderBindings.cpp index 4e5a0510d92..4e0b50aee16 100644 --- a/bindings/go/llvm/DIBuilderBindings.cpp +++ b/bindings/go/llvm/DIBuilderBindings.cpp @@ -76,12 +76,11 @@ LLVMMetadataRef LLVMDIBuilderCreateFunction( LLVMMetadataRef CompositeType, int IsLocalToUnit, int IsDefinition, unsigned ScopeLine, unsigned Flags, int IsOptimized) { DIBuilder *D = unwrap(Dref); - return wrap(D->createFunction(unwrap(Scope), Name, LinkageName, - File ? unwrap(File) : nullptr, Line, - unwrap(CompositeType), - IsLocalToUnit, IsDefinition, ScopeLine, - static_cast(Flags), - IsOptimized)); + return wrap(D->createFunction( + unwrap(Scope), Name, LinkageName, + File ? unwrap(File) : nullptr, Line, + unwrap(CompositeType), IsLocalToUnit, IsDefinition, + ScopeLine, static_cast(Flags), IsOptimized)); } LLVMMetadataRef @@ -90,10 +89,9 @@ LLVMDIBuilderCreateAutoVariable(LLVMDIBuilderRef Dref, LLVMMetadataRef Scope, unsigned Line, LLVMMetadataRef Ty, int AlwaysPreserve, unsigned Flags) { DIBuilder *D = unwrap(Dref); - return wrap(D->createAutoVariable(unwrap(Scope), Name, - unwrap(File), Line, - unwrap(Ty), AlwaysPreserve, - static_cast(Flags))); + return wrap(D->createAutoVariable( + unwrap(Scope), Name, unwrap(File), Line, + unwrap(Ty), AlwaysPreserve, static_cast(Flags))); } LLVMMetadataRef LLVMDIBuilderCreateParameterVariable( -- cgit v1.2.3