aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Deadcode.v
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2015-10-14 15:26:56 +0200
committerMichael Schmidt <github@mschmidt.me>2015-10-14 15:26:56 +0200
commitf5bb397acd12292f6b41438778f2df7391d6f2fe (patch)
treeb5964ca4c395b0db639565d0d0fddc9c44e34cf1 /backend/Deadcode.v
parentfd83d08d27057754202c575ed8a42d01b1af54c5 (diff)
downloadcompcert-f5bb397acd12292f6b41438778f2df7391d6f2fe.tar.gz
compcert-f5bb397acd12292f6b41438778f2df7391d6f2fe.zip
bug 17392: remove trailing whitespace in source files
Diffstat (limited to 'backend/Deadcode.v')
-rw-r--r--backend/Deadcode.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/Deadcode.v b/backend/Deadcode.v
index 9bf17d1d..fa99915d 100644
--- a/backend/Deadcode.v
+++ b/backend/Deadcode.v
@@ -168,7 +168,7 @@ Definition analyze (approx: PMap.t VA.t) (f: function): option (PMap.t NA.t) :=
(** * Part 2: the code transformation *)
-Definition transf_instr (approx: PMap.t VA.t) (an: PMap.t NA.t)
+Definition transf_instr (approx: PMap.t VA.t) (an: PMap.t NA.t)
(pc: node) (instr: instruction) :=
match instr with
| Iop op args res s =>
@@ -177,7 +177,7 @@ Definition transf_instr (approx: PMap.t VA.t) (an: PMap.t NA.t)
Inop s
else if is_int_zero nres then
Iop (Ointconst Int.zero) nil res s
- else if operation_is_redundant op nres then
+ else if operation_is_redundant op nres then
match args with
| arg :: _ => Iop Omove (arg :: nil) res s
| nil => instr