diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-03-03 01:02:48 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2010-03-03 01:02:48 +0000 |
commit | 6b11b4e050f23ef151df97045503a7c4353e0cf1 (patch) | |
tree | 4f3e5cfadb6b7dc8cff0f15a32b019d09eb830aa | |
parent | a62a5237fc96297523356019bc547eca9cbc63d5 (diff) | |
download | llvm-6b11b4e050f23ef151df97045503a7c4353e0cf1.zip llvm-6b11b4e050f23ef151df97045503a7c4353e0cf1.tar.gz llvm-6b11b4e050f23ef151df97045503a7c4353e0cf1.tar.bz2 |
Add comments to test case.
llvm-svn: 97619
-rw-r--r-- | clang/test/Analysis/inline2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/Analysis/inline2.c b/clang/test/Analysis/inline2.c index 9029fb9..e2758c1 100644 --- a/clang/test/Analysis/inline2.c +++ b/clang/test/Analysis/inline2.c @@ -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; } |