; REQUIRES: object-emission ; RUN: %llc_dwarf -O2 -filetype=obj < %s | llvm-dwarfdump -debug-dump=info - | FileCheck %s ; This is a test case that's as reduced as I can get it, though I haven't fully ; understood the mechanisms by which this bug occurs, so perhaps there's further ; simplification to be had (it's certainly a bit non-obvious what's going on). I ; hesitate to hand-craft or otherwise simplify the IR compared to what Clang ; generates as this is a particular tickling of optimizations and debug location ; propagation I want a realistic example of. ; Generated with clang-tot -cc1 -g -O2 -w -std=c++11 -fsanitize=address,use-after-return -fcxx-exceptions -fexceptions -x c++ incorrect-variable-debug-loc.cpp -emit-llvm ; struct A { ; int m_fn1(); ; }; ; ; struct B { ; void __attribute__((always_inline)) m_fn2() { i = 0; } ; int i; ; }; ; ; struct C { ; void m_fn3(); ; int j; ; B b; ; }; ; ; int fn1() { ; C A; ; A.b.m_fn2(); ; A.m_fn3(); ; } ; void C::m_fn3() { ; A().m_fn1(); ; b.m_fn2(); ; } ; CHECK: DW_TAG_structure_type ; CHECK-NEXT: DW_AT_name {{.*}} "C" ; CHECK: DW_TAG_subprogram ; CHECK-NOT: DW_TAG ; CHECK: DW_AT_name {{.*}} "m_fn3" ; CHECK: DW_AT_specification {{.*}} "_ZN1C5m_fn3Ev" ; CHECK-NOT: DW_TAG ; CHECK: DW_TAG_formal_parameter ; CHECK-NOT: DW_TAG ; CHECK: DW_AT_name {{.*}} "this" %struct.C = type { i32, %struct.B } %struct.B = type { i32 } %struct.A = type { i8 } @llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 1, void ()* @asan.module_ctor }] @__asan_option_detect_stack_use_after_return = external global i32 @__asan_gen_ = private unnamed_addr constant [11 x i8] c"1 32 8 1 A\00", align 1 @__asan_gen_1 = private unnamed_addr constant [13 x i8] c"1 32 1 3 tmp\00", align 1 ; Function Attrs: noreturn sanitize_address define i32 @_Z3fn1v() #0 { entry: %MyAlloca = alloca [64 x i8], align 32, !dbg !39 %0 = ptrtoint [64 x i8]* %MyAlloca to i64, !dbg !39 %1 = load i32* @__asan_option_detect_stack_use_after_return, !dbg !39 %2 = icmp ne i32 %1, 0, !dbg !39 br i1 %2, label %3, label %5 ;