Mercurial > hg > CbC > CbC_llvm
annotate clang/test/Frontend/optimization-remark-extra-analysis.c @ 169:1f21f60db75c
Added tag llvm10 for changeset 980e56f2e095
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 09:26:57 +0900 |
parents | 1d019706d866 |
children |
rev | line source |
---|---|
150 | 1 // Test that the is*RemarkEnabled overrides are working properly. This remark |
2 // requiring extra analysis is only conditionally enabled. | |
3 | |
4 // RUN: %clang_cc1 %s -Rpass-missed=gvn -O2 -emit-llvm-only -verify | |
5 | |
6 int foo(int *x, int *y) { | |
7 int a = *x; | |
8 *y = 2; | |
9 // expected-remark@+1 {{load of type i32 not eliminated}} | |
10 return a + *x; | |
11 } |