[cfe-commits] r154864 - /cfe/trunk/test/Analysis/redefined_system.c

Anna Zaks ganna at apple.com
Mon Apr 16 14:51:03 PDT 2012


Author: zaks
Date: Mon Apr 16 16:51:03 2012
New Revision: 154864

URL: http://llvm.org/viewvc/llvm-project?rev=154864&view=rev
Log:
[analyzer] Fixup for a test case.

Modified:
    cfe/trunk/test/Analysis/redefined_system.c

Modified: cfe/trunk/test/Analysis/redefined_system.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/redefined_system.c?rev=154864&r1=154863&r2=154864&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/redefined_system.c (original)
+++ cfe/trunk/test/Analysis/redefined_system.c Mon Apr 16 16:51:03 2012
@@ -12,6 +12,6 @@
 char atoi();
 
 int foo () {
-  return memmove() + malloc() + system + stdin() + memccpy() + free() + strdup() + atoi();
+  return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
 
 }





More information about the cfe-commits mailing list