diff options
Diffstat (limited to 'test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll')
-rw-r--r-- | test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll b/test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll new file mode 100644 index 0000000..4a80d37 --- /dev/null +++ b/test/Transforms/Inline/2003-10-13-AllocaDominanceProblem.ll @@ -0,0 +1,19 @@ +; RUN: opt < %s -inline -disable-output + +define i32 @reload() { +reloadentry: + br label %A + +A: ; preds = %reloadentry + call void @callee( ) + ret i32 0 +} + +define internal void @callee() { +entry: + %X = alloca i8, i32 0 ; <i8*> [#uses=0] + %Y = bitcast i32 0 to i32 ; <i32> [#uses=1] + %Z = alloca i8, i32 %Y ; <i8*> [#uses=0] + ret void +} + |