
Similar to 806761a7629df268c8aed49657aeccffa6bca449 -mtriple= specifies the full target triple while -march= merely sets the architecture part of the default target triple, leaving a target triple which may not make sense. Therefore, -march= is error-prone and not recommended for tests without a target triple. The issue has been benign as we recognize $unknown-apple-darwin as ELF instead of rejecting it outrightly.
25 lines
691 B
LLVM
25 lines
691 B
LLVM
; RUN: llc -mtriple=hexagon < %s
|
|
; REQUIRES: asserts
|
|
|
|
; Check for successful compilation.
|
|
|
|
define ptr @f0(i32 %a0, i32 %a1) {
|
|
b0:
|
|
%v0 = call noalias ptr @f1(i32 undef, i32 undef)
|
|
br i1 undef, label %b2, label %b1
|
|
|
|
b1: ; preds = %b0
|
|
%v1 = ptrtoint ptr %v0 to i32
|
|
store volatile i32 %v1, ptr %v0, align 4
|
|
%v3 = getelementptr inbounds i8, ptr %v0, i32 4
|
|
store ptr %v0, ptr %v3, align 4
|
|
%v5 = getelementptr inbounds i8, ptr %v0, i32 16
|
|
br label %b2
|
|
|
|
b2: ; preds = %b1, %b0
|
|
%v6 = phi ptr [ %v5, %b1 ], [ null, %b0 ]
|
|
ret ptr %v6
|
|
}
|
|
|
|
declare noalias ptr @f1(i32, i32) local_unnamed_addr
|