mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 21:05:51 +00:00
1de43ede89
another mechanical change accomplished though the power of terrible Perl scripts. I have manually switched some "s to 's to make escaping simpler. While I started this to fix tests that aren't run in all configurations, the massive number of tests is due to a really frustrating fragility of our testing infrastructure: things like 'grep -v', 'not grep', and 'expected failures' can mask broken tests all too easily. Essentially, I'm deeply disturbed that I can change the testsuite so radically without causing any change in results for most platforms. =/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159547 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
785 B
LLVM
22 lines
785 B
LLVM
; Test that the ToAsciiOptimizer works correctly
|
|
; RUN: opt < %s -simplify-libcalls -S | \
|
|
; RUN: not grep "call.*toascii"
|
|
|
|
declare i32 @toascii(i32)
|
|
|
|
define i32 @main() {
|
|
%val1 = call i32 @toascii( i32 1 ) ; <i32> [#uses=1]
|
|
%val2 = call i32 @toascii( i32 0 ) ; <i32> [#uses=1]
|
|
%val3 = call i32 @toascii( i32 127 ) ; <i32> [#uses=1]
|
|
%val4 = call i32 @toascii( i32 128 ) ; <i32> [#uses=1]
|
|
%val5 = call i32 @toascii( i32 255 ) ; <i32> [#uses=1]
|
|
%val6 = call i32 @toascii( i32 256 ) ; <i32> [#uses=1]
|
|
%rslt1 = add i32 %val1, %val2 ; <i32> [#uses=1]
|
|
%rslt2 = add i32 %val3, %val4 ; <i32> [#uses=1]
|
|
%rslt3 = add i32 %val5, %val6 ; <i32> [#uses=1]
|
|
%rslt4 = add i32 %rslt1, %rslt2 ; <i32> [#uses=1]
|
|
%rslt5 = add i32 %rslt4, %rslt3 ; <i32> [#uses=1]
|
|
ret i32 %rslt5
|
|
}
|
|
|