hanchenye-llvm-project/debuginfo-tests
Devang Patel 90955228bb These tests are x86_64 specific.
llvm-svn: 128421
2011-03-28 20:00:34 +00:00
..
README.txt Zap white spaces, test commit email. 2010-11-10 18:11:11 +00:00
aggregate-indirect-arg.cpp Test case for r125142. 2011-02-09 00:37:52 +00:00
block_var.m Test case for r123199. 2011-01-11 00:31:01 +00:00
dbg-arg.ll These tests are x86_64 specific. 2011-03-28 20:00:34 +00:00
dbg-declare.ll These tests are x86_64 specific. 2011-03-28 20:00:34 +00:00
dbg-declare2.ll These tests are x86_64 specific. 2011-03-28 20:00:34 +00:00
forward-declare-class.cpp Test case for r128150. 2011-03-23 16:30:03 +00:00
local-var.ll These tests are x86_64 specific. 2011-03-28 20:00:34 +00:00
local-var2.ll These tests are x86_64 specific. 2011-03-28 20:00:34 +00:00
sret.cpp test case for r125249. 2011-02-10 00:41:14 +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.