brintos

brintos / llvm-project-archived public Read only

0
0
Text · 291 B · f064186 Raw
14 lines · plain
1// Test the tco's -code-gen-llvm option.2 3// RUN: tco -code-gen-llvm %s 2>&1 | FileCheck %s4 5// Check that FIR is translated into LLVM IR, and that6// there is no any FIR output.7 8// CHECK-NOT: func.func9// CHECK: define void @_QPfoo10// CHECK-NOT: func.func11func.func @_QPfoo() {12  return13}14