Add comments to test case.

llvm-svn: 97619
This commit is contained in:
Zhongxing Xu 2010-03-03 01:02:48 +00:00
parent a62a5237fc
commit 6b11b4e050
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@
// Test parameter 'a' is registered to LiveVariables analysis data although it
// is not referenced in the function body.
// Before processing 'return 1;', in RemoveDeadBindings(), we query the liveness
// of 'a', because we have a binding for it due to parameter passing.
int f1(int a) {
return 1;
}