diff options
author | Eric Christopher <echristo@gmail.com> | 2013-04-02 22:55:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-04-02 22:55:52 +0000 |
commit | 17dd8f07c648d40226b54647997b3fc788f0549b (patch) | |
tree | 11477a20747e26ba918a9a5dbd95f1c56e3084fb /llvm/lib/IR | |
parent | 2ffc5734e712c79b5a103133d1c51ff102d4edad (diff) | |
download | bcm5719-llvm-17dd8f07c648d40226b54647997b3fc788f0549b.tar.gz bcm5719-llvm-17dd8f07c648d40226b54647997b3fc788f0549b.zip |
Reformat arguments.
llvm-svn: 178585
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r-- | llvm/lib/IR/DIBuilder.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/lib/IR/DIBuilder.cpp b/llvm/lib/IR/DIBuilder.cpp index 0d18bed0010..7890b7ff47d 100644 --- a/llvm/lib/IR/DIBuilder.cpp +++ b/llvm/lib/IR/DIBuilder.cpp @@ -548,10 +548,12 @@ DICompositeType DIBuilder::createStructType(DIDescriptor Context, } /// createUnionType - Create debugging information entry for an union. -DICompositeType DIBuilder::createUnionType( - DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber, - uint64_t SizeInBits, uint64_t AlignInBits, unsigned Flags, DIArray Elements, - unsigned RunTimeLang) { +DICompositeType DIBuilder::createUnionType(DIDescriptor Scope, StringRef Name, + DIFile File, unsigned LineNumber, + uint64_t SizeInBits, + uint64_t AlignInBits, unsigned Flags, + DIArray Elements, + unsigned RunTimeLang) { // TAG_union_type is encoded in DICompositeType format. Value *Elts[] = { GetTagConstant(VMContext, dwarf::DW_TAG_union_type), |