git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131844 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2011-05-22 06:50:05 +00:00
Родитель d753b56d77
Коммит 267ccbc261
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -11,17 +11,17 @@ void test() {
f0(17);
}
inline int __attribute__((always_inline)) f1(int x) {
inline int __attribute__((always_inline)) f1(int x) {
int blarg = 0;
for (int i = 0; i < x; ++i)
blarg = blarg + x * i;
return blarg;
return blarg;
}
// CHECK: @test1
int test1(int x) {
int test1(int x) {
// CHECK: br i1
// CHECK-NOT: call
// CHECK-NOT: call {{.*}} @f1
// CHECK: ret i32
return f1(x);
return f1(x);
}