blob: 917b47231843ede0affa88f3d31758803eb2219e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
; REQUIRES: ppc
; RUN: llvm-as %s -o %t.o
; RUN: ld.lld %t.o -o %t
target datalayout = "e-m:e-i64:64-n32:64"
target triple = "powerpc64le-unknown-linux-gnu"
define void @__start() {
entry:
ret void
}
|