[llvm] r174614 - FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!

Renato Golin renato.golin at linaro.org
Thu Feb 7 10:49:19 PST 2013


Seems to be working now, thanks!

--renato


On 7 February 2013 14:54, NAKAMURA Takumi <geek4civic at gmail.com> wrote:

> Author: chapuni
> Date: Thu Feb  7 08:54:42 2013
> New Revision: 174614
>
> URL: http://llvm.org/viewvc/llvm-project?rev=174614&view=rev
> Log:
> FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!
>
> Excuse me, I could not test it locally.
>
> Modified:
>     llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp
>
> Modified: llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp?rev=174614&r1=174613&r2=174614&view=diff
>
> ==============================================================================
> --- llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp (original)
> +++ llvm/trunk/lib/DebugInfo/DWARFDebugFrame.cpp Thu Feb  7 08:54:42 2013
> @@ -106,9 +106,9 @@ public:
>
>    void dumpHeader(raw_ostream &OS) const {
>      OS << format("%08x %08x %08x FDE ",
> -                 (uint32_t)Offset, (uint32_t)Length, LinkedCIEOffset);
> +                 (uint32_t)Offset, (uint32_t)Length,
> (int32_t)LinkedCIEOffset);
>      OS << format("cie=%08x pc=%08x...%08x\n",
> -                 (uint32_t)LinkedCIEOffset,
> +                 (int32_t)LinkedCIEOffset,
>                   (uint32_t)InitialLocation,
>                   (uint32_t)InitialLocation + (uint32_t)AddressRange);
>      OS << "\n";
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130207/5cb2ac4d/attachment.html>


More information about the llvm-commits mailing list