diff options
author | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2009-06-02 17:52:33 +0000 |
commit | 009b1c42aa6266385f2c37e227516b24077e6dd7 (patch) | |
tree | 64ba909838c23261cace781ece27d106134ea451 /test/Assembler/2004-03-07-FunctionAddressAlignment.ll |
Diffstat (limited to 'test/Assembler/2004-03-07-FunctionAddressAlignment.ll')
-rw-r--r-- | test/Assembler/2004-03-07-FunctionAddressAlignment.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Assembler/2004-03-07-FunctionAddressAlignment.ll b/test/Assembler/2004-03-07-FunctionAddressAlignment.ll new file mode 100644 index 0000000000000..e3bf0bb8ac78e --- /dev/null +++ b/test/Assembler/2004-03-07-FunctionAddressAlignment.ll @@ -0,0 +1,15 @@ +; RUN: llvm-as < %s | llvm-dis | not grep ptrtoint +; All of these should be eliminable + + +define i32 @foo() { + ret i32 and (i32 ptrtoint (i32()* @foo to i32), i32 1) +} + +define i32 @foo2() { + ret i32 and (i32 1, i32 ptrtoint (i32()* @foo2 to i32)) +} + +define i1 @foo3() { + ret i1 icmp ne (i1()* @foo3, i1()* null) +} |