r255445 - Resubmit new test case after adding more constraint

Xinliang David Li via cfe-commits cfe-commits at lists.llvm.org
Sat Dec 12 19:03:37 PST 2015


Author: davidxl
Date: Sat Dec 12 21:03:35 2015
New Revision: 255445

URL: http://llvm.org/viewvc/llvm-project?rev=255445&view=rev
Log:
Resubmit new test case after adding more constraint

Added:
    cfe/trunk/test/Profile/cxx-static.cpp

Added: cfe/trunk/test/Profile/cxx-static.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Profile/cxx-static.cpp?rev=255445&view=auto
==============================================================================
--- cfe/trunk/test/Profile/cxx-static.cpp (added)
+++ cfe/trunk/test/Profile/cxx-static.cpp Sat Dec 12 21:03:35 2015
@@ -0,0 +1,11 @@
+// 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();
+}
+




More information about the cfe-commits mailing list