about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2021-02-27 21:56:20 +0100
committerGitHub <noreply@github.com>2021-02-27 21:56:20 +0100
commit6d288c65dfb2ca45fa88ee4885d905c5c35f3554 (patch)
tree955aecdea0baf124132a7a1d5afddc7f23ed7778 /compiler/rustc_codegen_llvm
parenta7f9aca0a61e16f7eeeea206fbaf0e655bd9de89 (diff)
parente130e9cf7787ef83f9cada14b7a2579b09c6a558 (diff)
downloadrust-6d288c65dfb2ca45fa88ee4885d905c5c35f3554.tar.gz
rust-6d288c65dfb2ca45fa88ee4885d905c5c35f3554.zip
Rollup merge of #82537 - wesleywiser:update_measureme, r=oli-obk
Update measureme dependency to the latest version

This version adds the ability to use `rdpmc` hardware-based performance
counters instead of wall-clock time for measuring duration. This also
introduces a dependency on the `perf-event-open-sys` crate on Linux
which is used when using hardware counters.

r? ```@oli-obk```
Diffstat (limited to 'compiler/rustc_codegen_llvm')
-rw-r--r--compiler/rustc_codegen_llvm/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/Cargo.toml b/compiler/rustc_codegen_llvm/Cargo.toml
index 260edd9570b..4999cb3c7ab 100644
--- a/compiler/rustc_codegen_llvm/Cargo.toml
+++ b/compiler/rustc_codegen_llvm/Cargo.toml
@@ -12,7 +12,7 @@ doctest = false
 bitflags = "1.0"
 cstr = "0.2"
 libc = "0.2"
-measureme = "9.0.0"
+measureme = "9.1.0"
 snap = "1"
 tracing = "0.1"
 rustc_middle = { path = "../rustc_middle" }