[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / CodeGen / PowerPC / ppc_fp128-bcwriter.ll
blob3966f85cc86625d925f61b9431f1d61ba29f731d
1 ; RUN: llvm-as < %s -o - | llvm-dis - | FileCheck %s
3 ;CHECK-LABEL: main
4 ;CHECK: store ppc_fp128 0xM0000000000000000FFFFFFFFFFFFFFFF
6 define i32 @main() local_unnamed_addr {
7 _main_entry:
8   %e3 = alloca ppc_fp128, align 16
9   store ppc_fp128 0xM0000000000000000FFFFFFFFFFFFFFFF, ptr %e3, align 16
10   %0 = call i64 @foo( ptr nonnull %e3)
11   ret i32 undef
14 declare i64 @foo(ptr)