Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
261a915
Use platform dependent mcount function
JohnTitor Mar 28, 2019
5b7f4e9
rustc_target: factor out common fields of non-Single Variants.
eddyb Mar 29, 2019
8381cba
Add target_mcount option
JohnTitor Mar 30, 2019
3281248
Use target_mcount
JohnTitor Mar 30, 2019
77774e4
Use CString
JohnTitor Mar 30, 2019
29d68ed
Add lint for redundant imports
fabric-and-ink Feb 22, 2019
541c499
Remove redundant imports
fabric-and-ink Mar 10, 2019
2cebbe2
Edit comments
fabric-and-ink Mar 16, 2019
2245d10
Improve warning
fabric-and-ink Mar 16, 2019
d04e83f
Bless tests
fabric-and-ink Mar 16, 2019
8919894
Distinguish between imported and defined items
fabric-and-ink Mar 16, 2019
fef3f5c
Remove redundant import
fabric-and-ink Mar 16, 2019
f927236
Edit ui tests
fabric-and-ink Mar 16, 2019
6e7b45e
Replace REDUNDANT_IMPORT with UNUSED_IMPORTS
fabric-and-ink Mar 17, 2019
0f3b1c0
Fix tests
fabric-and-ink Mar 17, 2019
4a619aa
Add glob import to redundancy test
fabric-and-ink Mar 17, 2019
a97aeb4
Fix more tests
fabric-and-ink Mar 17, 2019
8fb0549
Fix doc tests
fabric-and-ink Mar 17, 2019
df80eae
Change message to present tense
fabric-and-ink Mar 17, 2019
c244c41
Handle glob import in redundancy check
fabric-and-ink Mar 18, 2019
2ade443
Restore test
fabric-and-ink Mar 18, 2019
aec518a
Fix test
JohnTitor Mar 30, 2019
70fa616
Stabilize refcell_replace_swap feature, closes #43570
jmcomets Mar 31, 2019
ae6622d
Add back missing import
fabric-and-ink Mar 31, 2019
c1d5314
Remove redundant import
fabric-and-ink Mar 31, 2019
c789a53
refcell_replace_swap: remove feature gate & obsolete documentation item
jmcomets Mar 31, 2019
55b7efe
match match match match match
oberien Mar 31, 2019
7b26a43
Use `u{1}` instead of `01`
JohnTitor Mar 31, 2019
c056a79
Remove #[doc(hidden)] from Error::type_id
Mar 31, 2019
07021e0
Allow closure to unsafe fn coercion
taiki-e Mar 31, 2019
dffdd8f
Rollup merge of #58805 - fabric-and-ink:redundant_import, r=petrochenkov
Centril Mar 31, 2019
245a0af
Rollup merge of #59506 - JohnTitor:improve-mcount, r=nagisa
Centril Mar 31, 2019
0171fe5
Rollup merge of #59519 - eddyb:layout-variants-refactor, r=oli-obk
Centril Mar 31, 2019
1909a03
Rollup merge of #59580 - taiki-e:coerce-closure, r=oli-obk
Centril Mar 31, 2019
9d198db
Rollup merge of #59581 - jmcomets:stabilize-refcell_replace_swap, r=C…
Centril Mar 31, 2019
9eba66b
Rollup merge of #59583 - oberien:patch-1, r=Centril
Centril Mar 31, 2019
3445445
Rollup merge of #59587 - XAMPPRocky:master, r=Centril
Centril Mar 31, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test
  • Loading branch information
JohnTitor committed Mar 30, 2019
commit aec518addd7ab4624ccd57ea143395483dfc690a
2 changes: 1 addition & 1 deletion src/test/codegen/instrument-mcount.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

#![crate_type = "lib"]

// CHECK: attributes #{{.*}} "instrument-function-entry-inlined"="{{_*}}mcount" "no-frame-pointer-elim"="true"
// CHECK: attributes #{{.*}} "instrument-function-entry-inlined"="{{.*}}mcount{{.*}}" "no-frame-pointer-elim"="true"
pub fn foo() {}