mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
f37812e906
This is far from complete, but it is enough to make it possible to write test cases using i64 arguments. Missing features: - Floating point arguments. - Receiving arguments on the stack. - Calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178523 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
266 B
LLVM
11 lines
266 B
LLVM
; RUN: llc < %s -march=sparc -mattr=-v9 | not grep popc
|
|
; RUN: llc < %s -march=sparc -mattr=+v9 | grep popc
|
|
|
|
declare i32 @llvm.ctpop.i32(i32)
|
|
|
|
define i32 @test(i32 %X) {
|
|
%Y = call i32 @llvm.ctpop.i32( i32 %X ) ; <i32> [#uses=1]
|
|
ret i32 %Y
|
|
}
|
|
|