brintos

brintos / llvm-project-archived public Read only

0
0
Text · 258 B · 935ea79 Raw
11 lines · cpp
1// RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi %s | FileCheck %s2 3extern int foo(float x);4extern int foo(double x);5 6__fp16 a;7 8// CHECK: call noundef i32 @_Z3foof9// CHECK-NOT: call noundef i32 @_Z3food10int bar (void) { return foo(a); }11