]> granicus.if.org Git - clang/commitdiff
Make this test portable on Win32.
authorJulien Lerouge <jlerouge@apple.com>
Sat, 10 Sep 2011 05:46:15 +0000 (05:46 +0000)
committerJulien Lerouge <jlerouge@apple.com>
Sat, 10 Sep 2011 05:46:15 +0000 (05:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139464 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/2007-06-15-AnnotateAttribute.c

index a51400288c2b3649c092417e98b246d092ad720a..de34866783bab6e8ee011cf0e9f50016a2e3661d 100644 (file)
@@ -1,8 +1,6 @@
 // RUN: %clang_cc1 -emit-llvm %s -o - | grep llvm.global.annotations
 // RUN: %clang_cc1 -emit-llvm %s -o - | grep llvm.var.annotation | count 3
 
-#include <stdio.h>
-
 /* Global variable with attribute */
 int X __attribute__((annotate("GlobalValAnnotation")));
 
@@ -19,6 +17,5 @@ int foo(int y __attribute__((annotate("LocalValAnnotation")))) {
 int main() {
   static int a __attribute__((annotate("GlobalValAnnotation")));
   a = foo(2);
-  printf("hello world%d\n", a);
   return 0;
 }