[OperandBundles] Have InstCombine play nice with operand bundles
[oota-llvm.git] / test / Transforms / InstCombine / alloca.ll
index b61b75e9f9f346cc72f6f7d3ba375a43a909dfaa..2ee0372e5e0afc2a3d547a1e221c20ba5a5f5912 100644 (file)
@@ -163,3 +163,14 @@ entry:
   call void (...) @use(i1* %v32, i1* %v64, i1* %v33)
   ret void
 }
+
+define void @test11() {
+entry:
+; ALL-LABEL: @test11(
+; ALL: %y = alloca i32
+; ALL: call void (...) @use(i32* nonnull @int) [ "blah"(i32* %y) ]
+; ALL: ret void
+  %y = alloca i32
+  call void (...) @use(i32* nonnull @int) [ "blah"(i32* %y) ]
+  ret void
+}