Home | History | Annotate | Download | only in CodeGen
      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 
      7 LD foo0() {
      8   return 2.625L;
      9 }
     10