Using _MSC_VER there was wrong, better just use the already existing ifdefs for
[oota-llvm.git] / test / Feature / noalias-ret.ll
1 ; RUN: llvm-as < %s
2
3 define noalias i8* @_Znwj(i32 %x) nounwind {
4   %A = malloc i8, i32 %x
5   ret i8* %A
6 }