1 // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi %s | FileCheck %s
3 extern int foo(float x
);
4 extern int foo(double x
);
8 // CHECK: call noundef i32 @_Z3foof
9 // CHECK-NOT: call noundef i32 @_Z3food
10 int bar (void) { return foo(a
); }