1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Functions marked malloc are noalias return.

llvm-svn: 65775
This commit is contained in:
Duncan Sands 2009-03-01 16:19:31 +00:00
parent 2efa31c91e
commit b55953cfc0

View File

@ -0,0 +1,3 @@
// RUN: %llvmgcc %s -S -o - | grep noalias
void * __attribute__ ((malloc)) foo (void) { return 0; }