diff --git a/clang/test/Analysis/inline2.c b/clang/test/Analysis/inline2.c index 9029fb9c6701..e2758c160a89 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; }