diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-04 00:27:43 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-04 00:27:43 +0000 |
commit | 0ac5075f31b7c705439cc4047a13f744ae29d57e (patch) | |
tree | c59ab72661da73eb366c54651a732b019ea346db /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 90c59ccae65e811e666743d5be162f7325f5b0e3 (diff) | |
download | bcm5719-llvm-0ac5075f31b7c705439cc4047a13f744ae29d57e.tar.gz bcm5719-llvm-0ac5075f31b7c705439cc4047a13f744ae29d57e.zip |
Drop the "eh_" from eh_func_begin and eh_func_end.
They will be used for more than eh tables.
llvm-svn: 231185
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 1cb14f0833d..da66bc91ec0 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -557,7 +557,7 @@ void AsmPrinter::EmitFunctionHeader() { } if (!MMI->getLandingPads().empty()) { - CurrentFnBegin = createTempSymbol("eh_func_begin", getFunctionNumber()); + CurrentFnBegin = createTempSymbol("func_begin", getFunctionNumber()); if (MAI->useAssignmentForEHBegin()) { MCSymbol *CurPos = OutContext.CreateTempSymbol(); @@ -884,7 +884,7 @@ void AsmPrinter::EmitFunctionBody() { if (!MMI->getLandingPads().empty()) { // Create a symbol for the end of function. - CurrentFnEnd = createTempSymbol("eh_func_end", getFunctionNumber()); + CurrentFnEnd = createTempSymbol("func_end", getFunctionNumber()); OutStreamer.EmitLabel(CurrentFnEnd); } |