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