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

            Bug ID: 17707
           Summary: legal escaping of ) generates a warning
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Frontend
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

% clang -v
FreeBSD clang version 3.3 (tags/RELEASE_33/final 183502) 20130610
Target: x86_64-unknown-freebsd9.2
Thread model: posix

snyder@picos:/home/snyder/json % clang t.c
t.c:5:16: warning: unknown escape sequence '\)'
    printf("\( \)\n");
               ^~
1 warning generated.
snyder@picos:/home/snyder/json % cat t.c
#include "stdio.h"

int main()
{
    printf("\( \)\n");
}
snyder@picos:/home/snyder/json % a.out
( )
snyder@picos:/home/snyder/json %

-- 
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