You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
337 B
12 lines
337 B
// 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;
|
|
}
|