diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-07 02:09:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-07 02:09:14 +0000 |
commit | 0f3a228e739c6d819793cc9f7301a8a17f6bbf77 (patch) | |
tree | 3a769139ee4a638e071f9b468f025a6b58e20b2e /clang/test/CodeGen/exprs.c | |
parent | 9dfed9fdb64e8b9e81aba9c749059287a044e134 (diff) | |
download | bcm5719-llvm-0f3a228e739c6d819793cc9f7301a8a17f6bbf77.tar.gz bcm5719-llvm-0f3a228e739c6d819793cc9f7301a8a17f6bbf77.zip |
add 'F' to a bunch of libm builtins so that codegen doesn't die on them,
pointed out by Charles Davis.
llvm-svn: 90736
Diffstat (limited to 'clang/test/CodeGen/exprs.c')
-rw-r--r-- | clang/test/CodeGen/exprs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/CodeGen/exprs.c b/clang/test/CodeGen/exprs.c index a0e5b7644ae..c1a5995dfc8 100644 --- a/clang/test/CodeGen/exprs.c +++ b/clang/test/CodeGen/exprs.c @@ -116,3 +116,6 @@ void f9(struct S *x) { foo(((void)1, x->c).tab[0]); } +void f10() { + __builtin_sin(0); +} |