brintos

brintos / llvm-project-archived public Read only

0
0
Text · 673 B · 03866d0 Raw
17 lines · plain
1; REQUIRES: have_tf_aot2; REQUIRES: x86_64-linux3; REQUIRES: llvm_raevict_model_autogenerated4;5; Check the code path for release mode is correctly taken. It is shared with6; development mode, and we separately test the internals of that (logged7; features, etc), so all we care about here is that the output is produced and8; is different from default policy.9;10; RUN: llc -mtriple=x86_64-linux-unknown -regalloc=greedy -regalloc-enable-advisor=default \11; RUN:   %S/Inputs/input.ll -o %t.default12 13; RUN: llc -mtriple=x86_64-linux-unknown -regalloc=greedy -regalloc-enable-advisor=release \14; RUN:   %S/Inputs/input.ll -o %t.release15 16; RUN: not diff %t.release %t.default17