mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-16 11:05:54 +00:00
26ebdd1e7c
- Revise previous patches of the same purpose by fixing *) grep <PA> | not grep <PB> semantically is not the same as CHECK: <PA>{{^<PB>.*$}} as the former will check all occurrences of <PA> while the later only check the first match. As the result, CHECK needs putting in all place where <PA> occurs. *) grep <PA> | count <N> needs a final CHECK-NOT of the same pattern. (As 'CHECK-<N>' is proposed for discussion, converting 'grep | count <N>' where N > 1 is postponed.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180742 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
1.0 KiB
LLVM
31 lines
1.0 KiB
LLVM
; RUN: llc < %s | FileCheck %s
|
|
; PR2078
|
|
; The clobber list says that "ax" is clobbered. Make sure that eax isn't
|
|
; allocated to the input/output register.
|
|
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
|
|
target triple = "i386-apple-darwin8"
|
|
@pixels = weak global i32 0 ; <i32*> [#uses=2]
|
|
|
|
define void @test() nounwind {
|
|
entry:
|
|
%tmp = load i32* @pixels, align 4 ; <i32> [#uses=1]
|
|
%tmp1 = tail call i32 asm sideeffect "a: $0 $1", "=r,0,~{dirflag},~{fpsr},~{flags},~{ax}"( i32 %tmp ) nounwind ; <i32> [#uses=1]
|
|
store i32 %tmp1, i32* @pixels, align 4
|
|
ret void
|
|
}
|
|
|
|
; CHECK: a:
|
|
; CHECK-NOT: ax
|
|
; CHECK: {{$}}
|
|
|
|
define void @test2(i16* %block, i8* %pixels, i32 %line_size) nounwind {
|
|
entry:
|
|
%tmp1 = getelementptr i16* %block, i32 64 ; <i16*> [#uses=1]
|
|
%tmp3 = tail call i8* asm sideeffect "b: $0 $1 $2", "=r,r,0,~{dirflag},~{fpsr},~{flags},~{ax}"( i16* %tmp1, i8* %pixels ) nounwind ; <i8*> [#uses=0]
|
|
ret void
|
|
}
|
|
|
|
; CHECK: b:
|
|
; CHECK-NOT: ax
|
|
; CHECK: {{$}}
|