http://llvm.org/bugs/show_bug.cgi?id=17625

            Bug ID: 17625
           Summary: Precompiler Error "##"
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: other
            Status: NEW
          Severity: normal
          Priority: P
         Component: LLVM Codegen
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

OS: Windows Vista

File test.c

#include <stdio.h>

#define TESTDEFINE1(a) printf("%s", a) 
#define TESTDEFINE2(a,b) printf("%s", a ## b) 

int main()
{
  TESTDEFINE1("Hello");
  TESTDEFINE2("Hello", "World");
}

Compile via:
clang -c test.c

Version:
clang version 3.4 (trunk)
Target: i686-pc-win32
Thread model: posix

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to