LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 13880 - Incorrect range of <angled> include fixit
Summary: Incorrect range of <angled> include fixit
Status: RESOLVED FIXED
Alias: None
Product: new-bugs
Classification: Unclassified
Component: new bugs (show other bugs)
Version: trunk
Hardware: Macintosh MacOS X
: P normal
Assignee: Unassigned LLVM Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-19 17:33 PDT by Volodymyr Sapsai
Modified: 2012-09-30 15:21 PDT (History)
4 users (show)

See Also:
Fixed By Commit(s):


Attachments
Use in InclusionDirective separate location variable pointing before > (1.45 KB, patch)
2012-09-19 18:04 PDT, Volodymyr Sapsai
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Volodymyr Sapsai 2012-09-19 17:33:02 PDT
Steps to Reproduce:
In llvm/tools/clang/test/FixIt run
$ clang -fsyntax-only fixit-include.c

Actual Results:
fixit-include.c:7:10: error: 'fixit-include.h' file not found with <angled> include; use "quotes" instead
#include <fixit-include.h> // expected-error {{'fixit-include.h' file not found with <angled> include; use "quotes" instead}}
         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         "fixit-include.h"
1 error generated.

Expected Results:
fixit-include.c:7:10: error: 'fixit-include.h' file not found with <angled> include; use "quotes" instead
#include <fixit-include.h> // expected-error {{'fixit-include.h' file not found with <angled> include; use "quotes" instead}}
         ^~~~~~~~~~~~~~~~~
         "fixit-include.h"
1 error generated.

I.e. fixit range shouldn't go beyond right angled bracket.

Build Date & Platform:
Build 09/20/2012 (r164256) on Mac OS X 10.6.8.
Comment 1 Richard Smith 2012-09-19 18:01:38 PDT
This was caused by r163588.
Comment 2 Volodymyr Sapsai 2012-09-19 18:04:29 PDT
Created attachment 9239 [details]
Use in InclusionDirective separate location variable pointing before >

Looks like this bug was introduced in r163588: in lib/Lex/PPDirectives.cpp by

  case tok::angle_string_literal:
  case tok::string_literal:
    Filename = getSpelling(FilenameTok, FilenameBuffer);
    End = FilenameTok.getLocation();
+   // For an angled include, point the end location at the closing '>'.
+   if (FilenameTok.is(tok::angle_string_literal))
+     End = End.getLocWithOffset(Filename.size()-1);
    CharEnd = End.getLocWithOffset(Filename.size());
    break;

Later CharEnd is used to compute fixit range, causing too long range. Also the same problem should be present for @__experimental_modules_import fixit, but I didn't try to reproduce it.

I'd like to note that mentioned change also causes clang::SourceManager::getIncludeLoc(FileID FID) const to return location pointing at '>'. But for include-what-you-use tool I need to get include name as typed and it was convenient when getIncludeLoc() returned location pointing at '<' or '"' (opening quotation mark).

I've created a patch according to my getIncludeLoc() preferences which fixes this issue. Please find patch attached.
Comment 3 Richard Smith 2012-09-19 18:10:40 PDT
We're already in discussion about the right way to fix this:

http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20120917/064551.html
Comment 4 Argyrios Kyrtzidis 2012-09-26 20:43:04 PDT
Fixed in r164743.
Comment 5 Volodymyr Sapsai 2012-09-30 15:21:57 PDT
Confirm that bug is fixed. Should I change the issue state to VERIFIED or CLOSED?