1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

new testcase

llvm-svn: 45888
This commit is contained in:
Chris Lattner 2008-01-11 23:04:14 +00:00
parent e55a5806ac
commit e330f0fe21

View File

@ -0,0 +1,6 @@
// RUN: %llvmgcc -xc++ %s -S -o /dev/null |& not grep warning
// rdar://5683899
void** f(void **Buckets, unsigned NumBuckets) {
return Buckets + NumBuckets;
}