hanchenye-llvm-project/debuginfo-tests
Devang Patel c8effb80cb testcase commit for upcoming fix.
llvm-svn: 114476
2010-09-21 20:51:54 +00:00
..
README.txt Import debug info tests. 2010-09-13 22:47:46 +00:00
dbg-arg.ll testcase commit for upcoming fix. 2010-09-21 20:51:54 +00:00
dbg-declare.ll test case for r113843. 2010-09-14 20:29:59 +00:00
dbg-declare2.ll Import debug info tests. 2010-09-13 22:47:46 +00:00
local-var.ll Import debug info tests. 2010-09-13 22:47:46 +00:00
local-var2.ll Import debug info tests. 2010-09-13 22:47:46 +00:00

README.txt

This is a collection of tests to check debugging information generated by 
compiler. This test suite can be checked out inside clang/test folder. This 
will enable 'make test' for clang to pick up these tests. Typically, test 
cases included here includes debugger commands and intended debugger output 
as comments in source file using DEBUGGER: and CHECK: as prefixes respectively.

For exmaple,

define i32 @f1(i32 %i) nounwind ssp {
; DEBUGGER: break f1                                                                                                                                                 
; DEBUGGER: r                                                                                                                                                        
; DEBUGGER: p i                                                                                                                                                      
; CHECK: $1 = 42                                                                                                                                                     
entry:
}

is a testcase where the debuger is asked to break at function 'f1' and 
print value of argument 'i'. The expected value of 'i' is 42 in this case.