1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

The hello pass actually requires a function to chew on!

llvm-svn: 35937
This commit is contained in:
Reid Spencer 2007-04-12 01:12:54 +00:00
parent dc71bea48d
commit 260356bbcf

View File

@ -4,3 +4,8 @@
; RUN: -disable-output %t.bc 2>&1 | grep Hello
@junk = global i32 0
define i32* @somefunk() {
ret i32* @junk
}