Clang Project

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