From b594fac7007281ef52e2746349abf970348661ff Mon Sep 17 00:00:00 2001 From: Francois Pichet Date: Sun, 8 May 2011 23:15:10 +0000 Subject: [PATCH] Fix test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131077 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaCXX/MicrosoftExtensions.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/SemaCXX/MicrosoftExtensions.cpp b/test/SemaCXX/MicrosoftExtensions.cpp index 40492608c0..d1da0f7db0 100644 --- a/test/SemaCXX/MicrosoftExtensions.cpp +++ b/test/SemaCXX/MicrosoftExtensions.cpp @@ -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; } -- 2.40.0