brintos

brintos / llvm-project-archived public Read only

0
0
Text · 484 B · ba852ce Raw
21 lines · plain
1# RUN: llc -mtriple=x86_64-- -passes=machine-cse -debug-pass-manager %s -o - 2>&1 | FileCheck %s2 3# CHECK: Skipping pass MachineCSEPass on test_optnone due to optnone attribute4# CHECK: Running pass: MachineCSEPass on test_opt5--- |6  define void @test_optnone() noinline optnone { ret void }7  define void @test_opt() { ret void }8...9---10name:            test_optnone11body:             |12  bb.0:13    RET6414...15---16name:            test_opt17body:             |18  bb.0:19    RET6420...21