diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-05 02:05:42 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-05 02:05:42 +0000 |
commit | 07c03d316d1533626f3d9967853abc6f799fa92e (patch) | |
tree | 1e992b91e6b2f0072dc1218b1f07cdd640332754 /llvm/test/DebugInfo/COFF | |
parent | c89aa6d6972cae3b071b52b59e1fe5c3610ae376 (diff) | |
download | bcm5719-llvm-07c03d316d1533626f3d9967853abc6f799fa92e.tar.gz bcm5719-llvm-07c03d316d1533626f3d9967853abc6f799fa92e.zip |
Use the existing begin and end symbol for debug info.
llvm-svn: 231338
Diffstat (limited to 'llvm/test/DebugInfo/COFF')
-rw-r--r-- | llvm/test/DebugInfo/COFF/asan-module-ctor.ll | 1 | ||||
-rw-r--r-- | llvm/test/DebugInfo/COFF/asm.ll | 1 | ||||
-rw-r--r-- | llvm/test/DebugInfo/COFF/multifile.ll | 1 | ||||
-rw-r--r-- | llvm/test/DebugInfo/COFF/multifunction.ll | 3 | ||||
-rw-r--r-- | llvm/test/DebugInfo/COFF/simple.ll | 1 | ||||
-rw-r--r-- | llvm/test/DebugInfo/COFF/tail-call-without-lexical-scopes.ll | 1 |
6 files changed, 8 insertions, 0 deletions
diff --git a/llvm/test/DebugInfo/COFF/asan-module-ctor.ll b/llvm/test/DebugInfo/COFF/asan-module-ctor.ll index 62051294514..ee693d6ae85 100644 --- a/llvm/test/DebugInfo/COFF/asan-module-ctor.ll +++ b/llvm/test/DebugInfo/COFF/asan-module-ctor.ll @@ -9,6 +9,7 @@ ; The module ctor has no debug info. All we have to do is don't crash. ; X86: _asan.module_ctor: +; X86-NEXT: L{{.*}}: ; X86-NEXT: # BB ; X86-NEXT: calll ___asan_init_v3 ; X86-NEXT: retl diff --git a/llvm/test/DebugInfo/COFF/asm.ll b/llvm/test/DebugInfo/COFF/asm.ll index 1a3621a29b9..cccf43f178d 100644 --- a/llvm/test/DebugInfo/COFF/asm.ll +++ b/llvm/test/DebugInfo/COFF/asm.ll @@ -115,6 +115,7 @@ ; OBJ32: } ; X64-LABEL: f: +; X64-NEXT: .L{{.*}}:{{$}} ; X64-NEXT: [[START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp diff --git a/llvm/test/DebugInfo/COFF/multifile.ll b/llvm/test/DebugInfo/COFF/multifile.ll index 2dc51035c02..91e2d9cd036 100644 --- a/llvm/test/DebugInfo/COFF/multifile.ll +++ b/llvm/test/DebugInfo/COFF/multifile.ll @@ -144,6 +144,7 @@ ; OBJ32: } ; X64-LABEL: f: +; X64-NEXT: .L{{.*}}:{{$}} ; X64-NEXT: [[START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp diff --git a/llvm/test/DebugInfo/COFF/multifunction.ll b/llvm/test/DebugInfo/COFF/multifunction.ll index 8f78a8f50b4..48a927f3b01 100644 --- a/llvm/test/DebugInfo/COFF/multifunction.ll +++ b/llvm/test/DebugInfo/COFF/multifunction.ll @@ -278,6 +278,7 @@ ; OBJ32: } ; X64-LABEL: x: +; X64-NEXT: .L{{.*}}: ; X64-NEXT: [[X_START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp @@ -290,6 +291,7 @@ ; X64-NEXT: [[END_OF_X:.*]]: ; ; X64-LABEL: y: +; X64-NEXT: .L{{.*}}: ; X64-NEXT: [[Y_START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp @@ -302,6 +304,7 @@ ; X64-NEXT: [[END_OF_Y:.*]]: ; ; X64-LABEL: f: +; X64-NEXT: .L{{.*}}: ; X64-NEXT: [[F_START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp diff --git a/llvm/test/DebugInfo/COFF/simple.ll b/llvm/test/DebugInfo/COFF/simple.ll index d785de09edd..2f713a984b4 100644 --- a/llvm/test/DebugInfo/COFF/simple.ll +++ b/llvm/test/DebugInfo/COFF/simple.ll @@ -107,6 +107,7 @@ ; OBJ32: } ; X64-LABEL: f: +; X64-NEXT: .L{{.*}}:{{$}} ; X64-NEXT: [[START:.*]]:{{$}} ; X64: # BB ; X64: subq $40, %rsp diff --git a/llvm/test/DebugInfo/COFF/tail-call-without-lexical-scopes.ll b/llvm/test/DebugInfo/COFF/tail-call-without-lexical-scopes.ll index 28e874905fe..4fb8a5be885 100644 --- a/llvm/test/DebugInfo/COFF/tail-call-without-lexical-scopes.ll +++ b/llvm/test/DebugInfo/COFF/tail-call-without-lexical-scopes.ll @@ -16,6 +16,7 @@ ; with debug information available. This used to be PR19239. ; X86-LABEL: {{^}}"?bar@@YAXHZZ": +; X86-NEXT: L{{.*}}: ; X86-NEXT: # BB ; X86-NEXT: [[JMP_LINE:^L.*]]:{{$}} ; X86: jmp "?foo@@YAXXZ" |