aboutsummaryrefslogtreecommitdiff
path: root/src/time.rs
diff options
context:
space:
mode:
authorGravatar Gerd Zellweger <mail@gerdzellweger.com> 2016-01-15 08:41:06 +0100
committerGravatar Gerd Zellweger <mail@gerdzellweger.com> 2016-01-15 08:41:06 +0100
commit36d60cd9a76fd496dbbff780942364fc88a60259 (patch)
tree55043b1fc6edf4c24a893fbfa096b83954188679 /src/time.rs
parent19a86adc76cc4e931a2cf91a473eefebe6898632 (diff)
downloadrust-x86-36d60cd9a76fd496dbbff780942364fc88a60259.tar.gz
rust-x86-36d60cd9a76fd496dbbff780942364fc88a60259.tar.zst
rust-x86-36d60cd9a76fd496dbbff780942364fc88a60259.zip
Formatting with new cargo fmt command.
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
Diffstat (limited to 'src/time.rs')
-rw-r--r--src/time.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/time.rs b/src/time.rs
index 7d402f4..eff567d 100644
--- a/src/time.rs
+++ b/src/time.rs
@@ -42,4 +42,4 @@ pub unsafe fn rdtscp() -> u64 {
asm!("rdtscp" : "={eax}" (low), "={edx}" (high) ::: "volatile");
((high as u64) << 32) | (low as u64)
-} \ No newline at end of file
+}