diff options
author | 2016-01-15 08:41:06 +0100 | |
---|---|---|
committer | 2016-01-15 08:41:06 +0100 | |
commit | 36d60cd9a76fd496dbbff780942364fc88a60259 (patch) | |
tree | 55043b1fc6edf4c24a893fbfa096b83954188679 /src/time.rs | |
parent | 19a86adc76cc4e931a2cf91a473eefebe6898632 (diff) | |
download | rust-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.rs | 2 |
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 +} |