Anton Korobeynikov | 8eb5b29 | 2011-10-14 23:32:50 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -emit-llvm -o - -triple arm-none-linux-gnueabi %s | FileCheck %s |
2 | |||||
3 | extern int foo(float x); | ||||
4 | extern int foo(double x); | ||||
5 | |||||
6 | __fp16 a; | ||||
7 | |||||
8 | // CHECK: call i32 @_Z3foof | ||||
9 | // CHECK-NOT: call i32 @_Z3food | ||||
10 | int bar (void) { return foo(a); } |