mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-06 05:33:28 +00:00
Add a testcase for a function we cannot legally promote the argument of.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17716 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e6c745261e
commit
78d223e1fb
18
test/Transforms/ArgumentPromotion/control-flow.ll
Normal file
18
test/Transforms/ArgumentPromotion/control-flow.ll
Normal file
@ -0,0 +1,18 @@
|
||||
; RUN: llvm-as < %s | opt -argpromotion | llvm-dis | not grep 'load int\* null'
|
||||
|
||||
implementation
|
||||
|
||||
internal int %callee(bool %C, int* %P) {
|
||||
br bool %C, label %T, label %F
|
||||
T:
|
||||
ret int 17
|
||||
F:
|
||||
%X = load int* %P
|
||||
ret int %X
|
||||
}
|
||||
|
||||
int %foo() {
|
||||
%X = call int %callee(bool true, int* null)
|
||||
ret int %X
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user