summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp4
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);
}
OpenPOWER on IntegriCloud