diff options
author | Eric Christopher <echristo@apple.com> | 2012-09-10 23:34:03 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-09-10 23:34:03 +0000 |
commit | e8a7b1b741ccffe63a7a29985b20ce2880c55af9 (patch) | |
tree | f46951797469704eb14f28170fa81bd720133a9f /llvm/lib/CodeGen/AsmPrinter/DIE.cpp | |
parent | abb4d9ed34ec16bc8510ac772a9802627cfb24a3 (diff) | |
download | bcm5719-llvm-e8a7b1b741ccffe63a7a29985b20ce2880c55af9.tar.gz bcm5719-llvm-e8a7b1b741ccffe63a7a29985b20ce2880c55af9.zip |
80-col fixup.
llvm-svn: 163569
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index 0885285b1bc..cfb0864d427 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -199,7 +199,8 @@ void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const { case dwarf::DW_FORM_data8: Size = 8; break; case dwarf::DW_FORM_udata: Asm->EmitULEB128(Integer); return; case dwarf::DW_FORM_sdata: Asm->EmitSLEB128(Integer); return; - case dwarf::DW_FORM_addr: Size = Asm->getTargetData().getPointerSize(); break; + case dwarf::DW_FORM_addr: + Size = Asm->getTargetData().getPointerSize(); break; default: llvm_unreachable("DIE Value form not supported yet"); } Asm->OutStreamer.EmitIntValue(Integer, Size, 0/*addrspace*/); |