Skip to content
  1. May 25, 2009
    • Chris Lattner's avatar
      tweak non-null check to put the caret on the function, but underline the · 23464b8f
      Chris Lattner authored
      argument.  This avoids the argument from being silenced when the argument is
      the NULL macro, which is defined in a system header.  This also makes the output
      a bit nicer, e.g.:
      
      t.c:8:3: warning: null passed to a callee which requires a non-null argument
        func1(NULL, cp2, i1);
        ^     ~~~~
      
      vs something like:
      
      t.c:8:10: warning: argument is null where non-null is required
        func1(NULL, cp2, i1);
              ^
      
      llvm-svn: 72393
      23464b8f
    • Chris Lattner's avatar
      Fix a couple of bugs: · 83bd8281
      Chris Lattner authored
      1. When we accept "#garbage" in asm-with-cpp mode, change the token kind
         of the # to unknown so that the preprocessor won't try to process it as
         a real #.  This fixes a crash on the attached example
      2. Fix macro definition extents processing to handle #foo at the end of a
         macro to say the definition ends with the foo, not the #.
      
      This is a follow-on fix to r72283, and rdar://6916026
      
      llvm-svn: 72388
      83bd8281
    • Chris Lattner's avatar
      improve comment, no functionality change. · 7ce761d2
      Chris Lattner authored
      llvm-svn: 72386
      7ce761d2
  2. May 24, 2009
  3. May 23, 2009
  4. May 22, 2009
Loading