summaryrefslogtreecommitdiff
path: root/Source/AbsInt/NativeLattice.cs
diff options
context:
space:
mode:
authorGravatar stobies <unknown>2012-01-11 09:55:06 +0100
committerGravatar stobies <unknown>2012-01-11 09:55:06 +0100
commitbf2bd08a7ebecfdec77e5bf64d1a4dda7973bcc6 (patch)
tree2635ee1d9e9984ad9c45211c70ea0b6072004b4e /Source/AbsInt/NativeLattice.cs
parent416d28d0927ef49e60b3ac964782e175b7805892 (diff)
Use DateTime.UtcNow instead of DateTime.Now
Diffstat (limited to 'Source/AbsInt/NativeLattice.cs')
-rw-r--r--Source/AbsInt/NativeLattice.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/AbsInt/NativeLattice.cs b/Source/AbsInt/NativeLattice.cs
index d02e6f31..f5bf1e03 100644
--- a/Source/AbsInt/NativeLattice.cs
+++ b/Source/AbsInt/NativeLattice.cs
@@ -82,7 +82,7 @@ namespace Microsoft.Boogie.AbstractInterpretation
if (CommandLineOptions.Clo.Trace) {
Console.WriteLine();
Console.WriteLine("Running abstract interpretation...");
- start = DateTime.Now;
+ start = DateTime.UtcNow;
}
WidenPoints.Compute(program);
@@ -103,7 +103,7 @@ namespace Microsoft.Boogie.AbstractInterpretation
}
if (CommandLineOptions.Clo.Trace) {
- DateTime end = DateTime.Now;
+ DateTime end = DateTime.UtcNow;
TimeSpan elapsed = end - start;
Console.WriteLine(" [{0} s]", elapsed.TotalSeconds);
Console.Out.Flush();