about summary refs log tree commit diff
path: root/src/librustc_trans/trans/debuginfo.rs
AgeCommit message (Expand)AuthorLines
2015-04-29Move debuginfo.rs to its own directoryNick Cameron-4107/+0
2015-04-23Get associated consts working in match patterns.Sean Patrick Santos-0/+4
2015-04-23Structural changes for associated constantsSean Patrick Santos-7/+2
2015-04-21LLVM < 3.5 is unsupported since bb18a3cTamir Duberstein-20/+2
2015-04-14Negative case of `len()` -> `is_empty()`Tamir Duberstein-4/+4
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-04-12Add a name for tuple fields in debuginfo so that they can be accessed in debu...Michael Woerister-5/+14
2015-04-12Auto merge of #23011 - nagisa:the-war-of-symbol-and-symbol, r=pnkfelixbors-7/+9
2015-04-03In librustc*, convert many uses of ast::Ident to ast::Name, fixing much of #6...Jonathan S-39/+35
2015-04-03Introduce trans::declareSimonas Kazlauskas-7/+9
2015-04-01Fallout out rustcNiko Matsakis-2/+2
2015-04-01Refactored ty::ctxt so node_types mutations must go through ty methods.Felix S. Klock II-1/+1
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-12/+12
2015-03-25rustc: Remove support for int/uintAlex Crichton-4/+4
2015-03-23Add generic conversion traitsAaron Turon-1/+1
2015-03-18Remove the newly introduced trait impls for fixed-size arrays and use &b"..."...Vadim Petrochenkov-1/+1
2015-03-11syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int...Eduard Burtescu-11/+15
2015-03-11syntax: rename TypeMethod to MethodSig and use it in MethDecl.Eduard Burtescu-6/+6
2015-03-11syntax: gather common fields of impl & trait items into their respective types.Eduard Burtescu-12/+12
2015-03-06Rollup merge of #23074 - michaelwoerister:constants-debug-locs, r=alexcrichtonManish Goregaokar-0/+37
2015-03-05debuginfo: Add `debuginfo::with_source_location_override()` function...Michael Woerister-0/+37
2015-03-04std: Deprecate std::old_io::fsAlex Crichton-15/+10
2015-03-02Remove the synthetic "region bound" from closures and instead update howNiko Matsakis-2/+2
2015-02-24Implement `<T>::method` UFCS expression syntax.Eduard Burtescu-2/+1
2015-02-24Remove ty_open and treat Unsized lvalues as *Unsized.Eduard Burtescu-1/+0
2015-02-20Remove remaining uses of `[]`. This time I tried to use deref coercions where...Niko Matsakis-32/+32
2015-02-18rollup merge of #22502: nikomatsakis/deprecate-bracket-bracketAlex Crichton-37/+37
2015-02-18Replace all uses of `&foo[]` with `&foo[..]` en masse.Niko Matsakis-37/+37
2015-02-18std: Implement CString-related RFCsAlex Crichton-25/+25
2015-02-16Lower the default dwarf version for androidEunji Jeong-1/+3
2015-02-08Auto merge of #21970 - michaelwoerister:lang-item-call-debug-locs, r=brsonbors-1/+1
2015-02-07Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichtonbors-19/+19
2015-02-06debuginfo: Assign debuginfo source locations to lang-item calls.Michael Woerister-1/+1
2015-02-06Update to last version, remove "[]" as much as possibleGuillaumeGomez-7/+7
2015-02-06librustc_trans has been updatedGuillaumeGomez-19/+19
2015-02-05make codemap more robust in face of ill-formed spans.Felix S. Klock II-1/+1
2015-02-05cleanup: replace `as[_mut]_slice()` calls with deref coercionsJorge Aparicio-11/+10
2015-02-04remove all kind annotations from closuresJorge Aparicio-1/+1
2015-02-03rollup merge of #21899: nikomatsakis/closure-unify-anyhowAlex Crichton-2/+2
2015-02-03Rename std::path to std::old_pathAaron Turon-1/+1
2015-02-03Remove the explicit closure kind syntax from the parser and AST;Niko Matsakis-2/+2
2015-02-02rollup merge of #21830: japaric/for-cleanupAlex Crichton-31/+31
2015-02-02rollup merge of #21818: dotdash/llvm_upAlex Crichton-44/+33
2015-02-02remove unused mut qualifiersJorge Aparicio-1/+1
2015-02-02`for x in xs.iter_mut()` -> `for x in &mut xs`Jorge Aparicio-1/+1
2015-02-02`for x in xs.iter()` -> `for x in &xs`Jorge Aparicio-29/+29
2015-02-01Update LLVM to rust-llvm-2015-01-30Björn Steinbrink-44/+33
2015-02-01More deprecating of i/u suffixes in librariesAlfie John-3/+3
2015-01-30remove dead codeJorge Aparicio-42/+0
2015-01-30implement for loop desugaringJorge Aparicio-18/+3