1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Regression/CodeGen/SparcV9/2004-06-10-SpillNull.llx
Brian Gaeke 270a6ba455 Test case for PR368
llvm-svn: 14129
2004-06-11 02:11:43 +00:00

12 lines
235 B
Plaintext

; RUN: llvm-as < %s | llc -march=sparcv9 | not grep 'CPI'
; PR368 - make sure nulls are not spilled to constant pool
implementation
declare void %foobar (sbyte* %arg)
void %caller () {
call void %foobar (sbyte* null)
ret void
}