summaryrefslogtreecommitdiff
path: root/test/Frontend/optimization-remark-extra-analysis.c
blob: 1a8415e69cff9ba0f7af5c67e2addb97cb34d8e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Test that the is*RemarkEnabled overrides are working properly.  This remark
// requiring extra analysis is only conditionally enabled.

// RUN: %clang_cc1 %s -Rpass-missed=gvn -O2 -emit-llvm-only -verify

int foo(int *x, int *y) {
  int a = *x;
  *y = 2;
  // expected-remark@+1 {{load of type i32 not eliminated}}
  return a + *x;
}