brintos

brintos / llvm-project-archived public Read only

0
0
Text · 313 B · f9a9457 Raw
14 lines · plain
1; Verify that the driver can consume LLVM IR files.2 3; REQUIRES: aarch64-registered-target4 5; RUN: %flang_fc1 -S -triple aarch64-unknown-linux-gnu %s -o - | FileCheck %s6; RUN: %flang -S -target aarch64-unknown-linux-gnu %s -o - | FileCheck %s7 8; CHECK-LABEL: foo:9; CHECK: ret10 11define void @foo() {12  ret void13}14