brintos

brintos / llvm-project-archived public Read only

0
0
Text · 629 B · f0fb6e3 Raw
16 lines · c
1// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --version 22// RUN: %clang_cc1 -triple loongarch64 -emit-llvm -O2 %s -o - | FileCheck %s3 4typedef long long v2i64 __attribute__ ((vector_size(16), aligned(16)));5 6// CHECK-LABEL: define dso_local void @test_w7// CHECK-SAME: () local_unnamed_addr #[[ATTR0:[0-9]+]] {8// CHECK-NEXT:  entry:9// CHECK-NEXT:    [[TMP0:%.*]] = tail call <2 x i64> asm sideeffect "vldi ${0:w}, 1", "=f"() #[[ATTR1:[0-9]+]], !srcloc [[META6:![0-9]+]]10// CHECK-NEXT:    ret void11//12void test_w() {13  v2i64 v2i64_r;14  asm volatile ("vldi %w0, 1" : "=f" (v2i64_r));15}16