diff options
Diffstat (limited to 'clang/test/CodeGen/overloadable.c')
-rw-r--r-- | clang/test/CodeGen/overloadable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/overloadable.c b/clang/test/CodeGen/overloadable.c index 4e24c91a79f..4b58c825462 100644 --- a/clang/test/CodeGen/overloadable.c +++ b/clang/test/CodeGen/overloadable.c @@ -1,4 +1,4 @@ -// RUN: clang -emit-llvm %s -o - | grep _Z1fPA10_1X +// RUN: clang-cc -emit-llvm %s -o - | grep _Z1fPA10_1X int __attribute__((overloadable)) f(int x) { return x; } float __attribute__((overloadable)) f(float x) { return x; } double __attribute__((overloadable)) f(double x) { return x; } |