Drop the "eh_" from eh_func_begin and eh_func_end.
[oota-llvm.git] / test / CodeGen / X86 / eh-label.ll
index 7019b45877aec09e227de13eb80328d3d14df479..aff0bcfffcfee484627b8d6b9aca4276ed65eb8d 100644 (file)
@@ -1,13 +1,13 @@
 ; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s
-; Test that we don't crashe if the .Leh_func_end0 name is taken.
+; Test that we don't crashe if the .Lfunc_end0 name is taken.
 
 declare void @g()
 
 define void @f() {
 bb0:
-  call void asm ".Leh_func_end0:", ""()
+  call void asm ".Lfunc_end0:", ""()
 ; CHECK: #APP
-; CHECK-NEXT: .Leh_func_end0:
+; CHECK-NEXT: .Lfunc_end0:
 ; CHECK-NEXT: #NO_APP
 
   invoke void @g() to label %bb2 unwind label %bb1
@@ -19,6 +19,6 @@ bb1:
 bb2:
   ret void
 
-; CHECK: [[END:.Leh_func_end.*]]:
+; CHECK: [[END:.Lfunc_end.*]]:
 ; CHECK: .long [[END]]-
 }