brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 7bdb249 Raw
25 lines · plain
1; RUN: llc -mtriple=x86_64-unknown-linux-gnu < %s2; ModuleID = 'bug.c'3target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"4target triple = "x86_64-unknown-linux-gnu"5 6@func.flagmask = internal constant i64 1, align 87 8define void @func() nounwind {9entry:10  %src = alloca i32, align 411  %dst = alloca i32, align 412  %flags = alloca i64, align 813  %newflags = alloca i64, align 814  store i32 0, ptr %src, align 415  store i32 0, ptr %dst, align 416  store i64 1, ptr %flags, align 817  store i64 -1, ptr %newflags, align 818  %tmp = load i64, ptr %flags, align 819  %and = and i64 %tmp, 120  %tmp1 = load i8, ptr %src21  %tmp2 = load i8, ptr %dst22  call void asm "pushfq \0Aandq $2, (%rsp) \0Aorq  $3, (%rsp) \0Apopfq \0Aaddb $4, $1 \0Apushfq \0Apopq $0 \0A", "=*&rm,=*&rm,i,r,r,1,~{cc},~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i64) %newflags, ptr elementtype(i8) %dst, i64 -2, i64 %and, i8 %tmp1, i8 %tmp2) nounwind23  ret void24}25