Use getEdgeProbability() instead of getEdgeWeight() in BFI and remove getEdgeWeight...
[oota-llvm.git] / test / Assembler / alloca-invalid-type-2.ll
1 ; RUN: not llvm-as < %s 2>&1 | FileCheck %s
2
3 ; CHECK: invalid type for alloca
4
5 define void @test() {
6 entry:
7   alloca i32 (i32)
8   ret void
9 }