diff options
author | Eric Christopher <echristo@gmail.com> | 2013-06-10 22:24:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-06-10 22:24:10 +0000 |
commit | a2f806fd20760b3235bfd67c1739189dddce4f59 (patch) | |
tree | 2e14259871f5fad2b4a7086508c3ddc29a5d9d4a /llvm/lib/CodeGen | |
parent | 2280c5baa64d84b5fd323852bf916d7a34a04708 (diff) | |
download | bcm5719-llvm-a2f806fd20760b3235bfd67c1739189dddce4f59.tar.gz bcm5719-llvm-a2f806fd20760b3235bfd67c1739189dddce4f59.zip |
Remove a few fixmes, the only work we're doing is getting the string
to return and this is done all over.
llvm-svn: 183704
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp index 38eceed5b23..5f451a7e576 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.cpp @@ -55,11 +55,9 @@ void DIEAbbrev::Profile(FoldingSetNodeID &ID) const { /// void DIEAbbrev::Emit(AsmPrinter *AP) const { // Emit its Dwarf tag type. - // FIXME: Doing work even in non-asm-verbose runs. AP->EmitULEB128(Tag, dwarf::TagString(Tag)); // Emit whether it has children DIEs. - // FIXME: Doing work even in non-asm-verbose runs. AP->EmitULEB128(ChildrenFlag, dwarf::ChildrenString(ChildrenFlag)); // For each attribute description. @@ -67,12 +65,10 @@ void DIEAbbrev::Emit(AsmPrinter *AP) const { const DIEAbbrevData &AttrData = Data[i]; // Emit attribute type. - // FIXME: Doing work even in non-asm-verbose runs. AP->EmitULEB128(AttrData.getAttribute(), dwarf::AttributeString(AttrData.getAttribute())); // Emit form type. - // FIXME: Doing work even in non-asm-verbose runs. AP->EmitULEB128(AttrData.getForm(), dwarf::FormEncodingString(AttrData.getForm())); } |