xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/mips64-f128-literal.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // RUN: %clang -target mips64el-unknown-linux -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc typedef long double LD;
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc // CHECK: ret fp128
6*f4a2713aSLionel Sambuc 
foo0()7*f4a2713aSLionel Sambuc LD foo0() {
8*f4a2713aSLionel Sambuc   return 2.625L;
9*f4a2713aSLionel Sambuc }
10