Update tests that need to be run through llvm-upgrade. This is necessary
[oota-llvm.git] / test / Transforms / SCCP / 2002-05-02-MissSecondInst.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -sccp | llvm-dis | not grep sub
2
3 void %test3(int, int) {
4         add int 0, 0
5         sub int 0, 4
6         ret void
7 }