llvm-6502/lib
Manman Ren 1229c0cb10 Linker: correctly link in dbg.declare
Given source IR:
call void @llvm.dbg.declare(metadata !{i32* %argc.addr}, metadata !14), !dbg !15
we used to generate 
call void @llvm.dbg.declare(metadata !27, metadata !28), !dbg !29
!27 = metadata !{null}

With this patch, we will correctly generate
call void @llvm.dbg.declare(metadata !{i32* %argc.addr}, metadata !27), !dbg !28

Looking up %argc.addr in ValueMap will return null, since %argc.addr is already
correctly set up, we can use identity mapping.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173946 91177308-0d34-0410-b5e6-96231b3b80d8
2013-01-30 17:42:15 +00:00
..
Analysis
Archive
AsmParser
Bitcode Use an AttrBuilder to generate the correct AttributeSet. 2013-01-29 01:43:29 +00:00
CodeGen Add a special handling case for untyped CopyFromReg node in GetCostForDef() of ScheduleDAGRRList 2013-01-29 21:18:43 +00:00
DebugInfo
ExecutionEngine Formatting correction 2013-01-29 00:50:18 +00:00
IR Attempt to fix dragonegg. Use the number of slots to determine if the AttributeSet has attributes or not. 2013-01-30 06:54:41 +00:00
Linker
MC This patch reworks how llvm targets set 2013-01-30 02:09:52 +00:00
Object
Option
Support Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support 2013-01-30 12:05:05 +00:00
TableGen
Target Add a special ARM trap encoding for NaCl. 2013-01-30 16:30:19 +00:00
Transforms Linker: correctly link in dbg.declare 2013-01-30 17:42:15 +00:00
CMakeLists.txt
LLVMBuild.txt
Makefile