Skip to content
Snippets Groups Projects
Commit 82389411 authored by Tom Care's avatar Tom Care
Browse files

Modified pseudoconstant test case to make it a bit clearer and fix a missing line

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111833 91177308-0d34-0410-b5e6-96231b3b80d8
parent db34ab70
No related branches found
No related tags found
No related merge requests found
...@@ -106,9 +106,8 @@ unsigned false3(int param) { ...@@ -106,9 +106,8 @@ unsigned false3(int param) {
unsigned false4() { unsigned false4() {
// Trivial constant // Trivial constant
const int height = 1; const int height = 1;
int c = 42;
// Pseudo-constant (never changes after decl) test(height * c); // no-warning
int width = height;
// Pseudo-constant (blockvar) // Pseudo-constant (blockvar)
__block int a = 0; __block int a = 0;
...@@ -116,6 +115,9 @@ unsigned false4() { ...@@ -116,6 +115,9 @@ unsigned false4() {
a *= b; // no-warning a *= b; // no-warning
test(a); test(a);
// Pseudo-constant (never changes after decl)
int width = height;
return width * 10; // no-warning return width * 10; // no-warning
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment