mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
DebugInfo: Make a test more portable
mach-o doesn't like sections without segments, and elf is perfectly happy with commas in section names, so use a Darwin-like section name. Suggestion by Eric Christopher. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7cc1de1090
commit
971bf283f8
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
; Generated from the following source compiled with clang -gmlt:
|
; Generated from the following source compiled with clang -gmlt:
|
||||||
; void f1(void) {}
|
; void f1(void) {}
|
||||||
; void f2(void) __attribute__((section("bar"))) {}
|
; void f2(void) __attribute__((section("__TEXT,__bar"))) {}
|
||||||
|
|
||||||
; Check that
|
; Check that
|
||||||
; * -gmlt ('Emission Kind' of 'LineTablesOnly' in the CU debug info metadata)
|
; * -gmlt ('Emission Kind' of 'LineTablesOnly' in the CU debug info metadata)
|
||||||
@ -36,7 +36,7 @@ entry:
|
|||||||
}
|
}
|
||||||
|
|
||||||
; Function Attrs: nounwind uwtable
|
; Function Attrs: nounwind uwtable
|
||||||
define void @f2() #0 section "bar" {
|
define void @f2() #0 section "__TEXT,__bar" {
|
||||||
entry:
|
entry:
|
||||||
ret void, !dbg !12
|
ret void, !dbg !12
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user