1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

new testcase

llvm-svn: 34361
This commit is contained in:
Chris Lattner 2007-02-17 01:44:21 +00:00
parent e864bf486f
commit faeaff6b73

View File

@ -0,0 +1,5 @@
// RUN: %llvmgcc %s -S -o - -emit-llvm
void foo(void *ptr, int test) {
(ptr - ((void *) test + 0x2000));
}