diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-01-06 19:13:55 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-01-06 19:13:55 +0000 |
commit | a055b8c0d38f26a156694dbdde48f2fcc666774d (patch) | |
tree | d63a981914bab32d69d8d34d966b6e736e013faa /llvm/lib/CodeGen | |
parent | 47ad37dbe4a325d59140c1bf22373b2ee9d01dfb (diff) | |
download | bcm5719-llvm-a055b8c0d38f26a156694dbdde48f2fcc666774d.tar.gz bcm5719-llvm-a055b8c0d38f26a156694dbdde48f2fcc666774d.zip |
Forgot that this was needed for Linux. This should fix the builds.
llvm-svn: 61819
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index a2543f9f558..fb0c86b5493 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -3653,10 +3653,10 @@ private: Asm->EOL("FDE CIE offset"); - EmitReference("eh_func_begin", EHFrameInfo.Number, true); + EmitReference("eh_func_begin", EHFrameInfo.Number, true, true); Asm->EOL("FDE initial location"); EmitDifference("eh_func_end", EHFrameInfo.Number, - "eh_func_begin", EHFrameInfo.Number); + "eh_func_begin", EHFrameInfo.Number, true); Asm->EOL("FDE address range"); // If there is a personality and landing pads then point to the language |