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 SambucLD foo0() { 8*f4a2713aSLionel Sambuc return 2.625L; 9*f4a2713aSLionel Sambuc } 10