Skip to content
Snippets Groups Projects
Commit 65cdd36e authored by Tanya Lattner's avatar Tanya Lattner
Browse files

Test case for noinline attribute.

llvm-svn: 37479
parent 34404e32
No related branches found
No related tags found
No related merge requests found
// RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline
int bar(int x, int y); __attribute__((noinline))
int bar(int x, int y)
{
return x + y;
}
int foo(int a, int b) {
return bar(b, a);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment