mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Convert to FileCheck, fixing failure due to tab change in the process.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85204 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1,13 +1,12 @@
|
|||||||
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnu | \
|
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnu | FileCheck %s
|
||||||
; RUN: grep {mov r11, sp}
|
|
||||||
; RUN: llc < %s -march=arm -mtriple=arm-linux-gnu | \
|
|
||||||
; RUN: grep {mov sp, r11}
|
|
||||||
|
|
||||||
define void @f(i32 %a) {
|
define void @f(i32 %a) {
|
||||||
entry:
|
entry:
|
||||||
|
; CHECK: mov r11, sp
|
||||||
%tmp = alloca i8, i32 %a ; <i8*> [#uses=1]
|
%tmp = alloca i8, i32 %a ; <i8*> [#uses=1]
|
||||||
call void @g( i8* %tmp, i32 %a, i32 1, i32 2, i32 3 )
|
call void @g( i8* %tmp, i32 %a, i32 1, i32 2, i32 3 )
|
||||||
ret void
|
ret void
|
||||||
|
; CHECK: mov sp, r11
|
||||||
}
|
}
|
||||||
|
|
||||||
declare void @g(i8*, i32, i32, i32, i32)
|
declare void @g(i8*, i32, i32, i32, i32)
|
||||||
|
Reference in New Issue
Block a user