Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / cfence-i128.ll
blob6775415a0b423cd175e7ec9ce25e87a40e67eddf
1 ; REQUIRES: asserts
2 ; RUN: not --crash llc -verify-machineinstrs -mtriple=powerpc64-unknown-unknown \
3 ; RUN:   < %s 2>&1 | FileCheck %s
5 declare void @llvm.ppc.sync()
6 declare void @llvm.ppc.cfence.i128(i128)
8 define void @test_cfence(i128 %src) {
9 entry:
10   call void @llvm.ppc.sync()
11 ; CHECK: ExpandIntegerOperand Op{{.*}}llvm.ppc.cfence
12 ; CHECK: LLVM ERROR: Do not know how to expand this operator's operand!
13   call void @llvm.ppc.cfence.i128(i128 %src)
14   ret void