teak-llvm/clang/test/Frontend/optimization-remark-extra-analysis.c
Adam Nemet 5d2eb16c9f Fix ClangDiagnosticHandler::is*RemarkEnabled members
Apparently these weren't really working. I added test coverage and fixed the
typo in the name and the parameter.

llvm-svn: 313653
2017-09-19 17:59:40 +00:00

12 lines
337 B
C

// 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;
}