mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
A new test case for the ToAsciiOptimizer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21624 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
926bd0cc45
commit
b2ae078c9a
21
test/Transforms/SimplifyLibCalls/ToAscii.ll
Normal file
21
test/Transforms/SimplifyLibCalls/ToAscii.ll
Normal file
@ -0,0 +1,21 @@
|
||||
; Test that the ToAsciiOptimizer works correctly
|
||||
; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*toascii'
|
||||
|
||||
declare int %toascii(int)
|
||||
|
||||
implementation ; Functions:
|
||||
|
||||
int %main () {
|
||||
%val1 = call int %toascii(int 1)
|
||||
%val2 = call int %toascii(int 0)
|
||||
%val3 = call int %toascii(int 127)
|
||||
%val4 = call int %toascii(int 128)
|
||||
%val5 = call int %toascii(int 255)
|
||||
%val6 = call int %toascii(int 256)
|
||||
%rslt1 = add int %val1, %val2
|
||||
%rslt2 = add int %val3, %val4
|
||||
%rslt3 = add int %val5, %val6
|
||||
%rslt4 = add int %rslt1, %rslt2
|
||||
%rslt5 = add int %rslt4, %rslt3
|
||||
ret int %rslt5
|
||||
}
|
Loading…
Reference in New Issue
Block a user