brintos

brintos / llvm-project-archived public Read only

0
0
Text · 757 B · 4444735 Raw
16 lines · plain
1; RUN: llvm-as < %s >%t12; RUN: llvm-lto -exported-symbol=test_x86_aesni_aeskeygenassist -mattr=+aes -o %t2 %t13; RUN: llvm-objdump -d %t2 | FileCheck -check-prefix=WITH_AES %s4; RUN: not --crash llvm-lto -exported-symbol=test_x86_aesni_aeskeygenassist -mattr=-aes -o %t3 %t1 2>&1 | FileCheck -check-prefix=WITHOUT_AES %s5 6target triple = "x86_64-unknown-linux-gnu"7declare <2 x i64> @llvm.x86.aesni.aeskeygenassist(<2 x i64>, i8)8define <2 x i64> @test_x86_aesni_aeskeygenassist(<2 x i64> %a0) {9  ; WITH_AES: test_x86_aesni_aeskeygenassist10  ; WITH_AES: aeskeygenassist11  %res = call <2 x i64> @llvm.x86.aesni.aeskeygenassist(<2 x i64> %a0, i8 7)12  ret <2 x i64> %res13}14 15; WITHOUT_AES: LLVM ERROR: Cannot select: intrinsic %llvm.x86.aesni.aeskeygenassist16