brintos

brintos / llvm-project-archived public Read only

0
0
Text · 571 B · 0d3c60e Raw
21 lines · plain
1; RUN: llc < %s -mtriple=msp430-unknown-unknown -enable-misched | FileCheck %s2 3target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"4 5@y = common global i16 0, align 26@x = common global i16 0, align 27 8; Test that the MI Scheduler's initPolicy does not crash when i32 is9; unsupported. The content of the asm check below is unimportant. It10; only verifies that the code generator ran successfully.11;12; CHECK-LABEL: @f13; CHECK: mov &y, &x14; CHECK: ret15define void @f() {16entry:17  %0 = load i16, ptr @y, align 218  store i16 %0, ptr @x, align 219  ret void20}21