[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2007-06-05-NoInlineAttribute.c
blob26aad88e814687edd24ca79f0d0b26f279d23c42
1 // RUN: %clang_cc1 -O2 -emit-llvm %s -o - | grep call
3 static int bar(int x, int y) __attribute__((noinline));
5 static int bar(int x, int y)
7 return x + y;
10 int foo(int a, int b) {
11 return bar(b, a);