11 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o - -triple powerpc64-linux-gnu | FileCheck %s2// RUN: %clang_cc1 %s -emit-llvm -o - -triple powerpc64le-linux-gnu | FileCheck %s3 4int test(long double x) { return __builtin_signbitl(x); }5 6// CHECK-LABEL: define{{.*}} signext i32 @test(ppc_fp128 noundef %x)7// CHECK: trunc i128 %{{.*}} to i648// CHECK: icmp slt i64 %{{.*}}, 09// CHECK: zext i1 %{{.*}} to i3210 11