mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
New testcase for folding in some important situations. The first two
come up a lot in the code generated by the C++ front-end for pointers to member functions. See PR166. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12217 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2c56b55cf0
commit
3c6d4b4f81
15
test/Assembler/2004-03-07-FunctionAddressAlignment.llx
Normal file
15
test/Assembler/2004-03-07-FunctionAddressAlignment.llx
Normal file
@ -0,0 +1,15 @@
|
||||
; RUN: llvm-as < %s | llvm-dis | not grep cast
|
||||
; All of these should be eliminable
|
||||
|
||||
|
||||
int %foo() {
|
||||
ret int and (int cast (int()* %foo to int), int 1)
|
||||
}
|
||||
|
||||
int %foo2() {
|
||||
ret int and (int 1, int cast (int()* %foo2 to int))
|
||||
}
|
||||
|
||||
bool %foo3() {
|
||||
ret bool cast (bool()* %foo3 to bool)
|
||||
}
|
Loading…
Reference in New Issue
Block a user