Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
TimNN committed Mar 16, 2017
1 parent 449219a commit 222ca3c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/rustllvm/RustWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -610,15 +610,12 @@ extern "C" LLVMRustMetadataRef LLVMRustDIBuilderCreateStaticVariable(
return wrap(Builder->createGlobalVariableExpression(
unwrapDI<DIDescriptor>(Context), Name, LinkageName,
unwrapDI<DIFile>(File), LineNo, unwrapDI<DIType>(Ty), IsLocalToUnit,
InitExpr,
unwrapDIPtr<MDNode>(Decl),
AlignInBits));
InitExpr, unwrapDIPtr<MDNode>(Decl), AlignInBits));
#else
return wrap(Builder->createGlobalVariable(
unwrapDI<DIDescriptor>(Context), Name, LinkageName,
unwrapDI<DIFile>(File), LineNo, unwrapDI<DIType>(Ty), IsLocalToUnit,
InitVal,
unwrapDIPtr<MDNode>(Decl)));
InitVal, unwrapDIPtr<MDNode>(Decl)));
#endif
}

Expand Down

0 comments on commit 222ca3c

Please sign in to comment.