Revert 255436 : remove test that needs to be refined

llvm-svn: 255437
This commit is contained in:
Xinliang David Li 2015-12-12 18:49:37 +00:00
parent c8788d2a97
commit e82c58588d
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
// RUN: %clang -std=c++11 -o %t.o -c -no-integrated-as -fprofile-instr-generate %s
__attribute__((noinline)) static int bar() {
return 1;
}
int foo(int a, int b)
{
auto Func = [](int a, int b) { return a > b; };
return Func(a,b) + bar();
}