Revert r255445: adding a new test case

llvm-svn: 255447
This commit is contained in:
Xinliang David Li 2015-12-13 04:45:49 +00:00
parent c2a687b6a6
commit 13ec697056
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
// REQUIRES: x86-registered-target
// RUN: %clang -target i386-unknown-linux -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();
}