]> granicus.if.org Git - clang/commitdiff
Fix test.
authorFrancois Pichet <pichet2000@gmail.com>
Sun, 8 May 2011 23:15:10 +0000 (23:15 +0000)
committerFrancois Pichet <pichet2000@gmail.com>
Sun, 8 May 2011 23:15:10 +0000 (23:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131077 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaCXX/MicrosoftExtensions.cpp

index 40492608c04d58f11634c478a407edb93222f747..d1da0f7db0500bac34490a3a78bc99e4ddf7894f 100644 (file)
@@ -187,6 +187,5 @@ long (*function_ptr)(int a);
 void function_to_voidptr_conv() {
    void *a1 = function_prototype;
    void *a2 = &function_prototype;
-   void *a1 = function_ptr;
-   void *a2 = &function_ptr;
+   void *a3 = function_ptr;
 }