Skip to content
functions.c 851 B
Newer Older
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
  return g(i);
  return g(i);
// rdar://6110827
typedef void T(void);
void test3(T f) {
  f();
}

Daniel Dunbar's avatar
Daniel Dunbar committed
// RUN: grep 'define void @f0()' %t
Daniel Dunbar's avatar
Daniel Dunbar committed
// RUN: grep 'call void @f1()' %t
Daniel Dunbar's avatar
Daniel Dunbar committed
// RUN: grep 'define void @f1()' %t

// RUN: grep 'define .* @f3' %t | not grep -F '...'
struct foo { int X, Y, Z; } f3() {
Mike Stump's avatar
Mike Stump committed
  while (1) {}
Chris Lattner's avatar
Chris Lattner committed

// PR4423 - This shouldn't crash in codegen
void f4() {}
void f5() { f4(42); }

// Qualifiers on parameter types shouldn't make a difference.
static void f6(const float f, const float g) {
}
void f7(float f, float g) {
  f6(f, g);
// CHECK: define void @f7(float{{.*}}, float{{.*}})
// CHECK: call void @f6(float{{.*}}, float{{.*}})
}