create test/Regression/CodeGen/ARM/ and add a minimal test to it

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28468 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2006-05-25 10:49:19 +00:00
parent c7b7f4cad2
commit 2776bd1d2a
2 changed files with 7 additions and 0 deletions

3
test/CodeGen/ARM/dg.exp Normal file
View File

@ -0,0 +1,3 @@
load_lib llvm-dg.exp
llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] $objdir $srcdir $subdir $target_triplet $llvmgcc $llvmgxx $prcontext $llvmgcc_version

4
test/CodeGen/ARM/ret0.ll Normal file
View File

@ -0,0 +1,4 @@
; RUN: llvm-as < %s | llc -march=arm
int %test() {
ret int 0
}