Skip to content
  1. Jul 07, 2010
  2. Jul 06, 2010
  3. Jul 05, 2010
  4. Jul 04, 2010
  5. Jul 03, 2010
  6. Jul 02, 2010
  7. Jul 01, 2010
    • Bill Wendling's avatar
      Implement the "linker_private_weak" linkage type. This will be used for · 03bcd6ec
      Bill Wendling authored
      Objective-C metadata types which should be marked as "weak", but which the
      linker will remove upon final linkage. However, this linkage isn't specific to
      Objective-C.
      
      For example, the "objc_msgSend_fixup_alloc" symbol is defined like this:
      
            .globl l_objc_msgSend_fixup_alloc
            .weak_definition l_objc_msgSend_fixup_alloc
            .section __DATA, __objc_msgrefs, coalesced
            .align 3
      l_objc_msgSend_fixup_alloc:
             .quad   _objc_msgSend_fixup
             .quad   L_OBJC_METH_VAR_NAME_1
      
      This is different from the "linker_private" linkage type, because it can't have
      the metadata defined with ".weak_definition".
      
      Currently only supported on Darwin platforms.
      
      llvm-svn: 107433
      03bcd6ec
    • Devang Patel's avatar
      Do not require line number entry for undefined local variable. · 42939752
      Devang Patel authored
      This is a regression caused by r106792 and caught by gdb testsuite.
      
      llvm-svn: 107430
      42939752
Loading