From c9226fb33bb4391f65b7844c5f7d6a2d9dcc6303 Mon Sep 17 00:00:00 2001
From: bjschre2 <bjschre2@illinois.edu>
Date: Fri, 24 Jan 2020 12:38:27 -0600
Subject: [PATCH] Fix typo in hpvm-specification.md

---
 hpvm/docs/hpvm-specification.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hpvm/docs/hpvm-specification.md b/hpvm/docs/hpvm-specification.md
index ca7a91d569..cd61d95b4e 100644
--- a/hpvm/docs/hpvm-specification.md
+++ b/hpvm/docs/hpvm-specification.md
@@ -150,7 +150,7 @@ Atomically computes the bitwise XCHG of ```v``` and the value stored at memory l
 Atomically computes the bitwise AND of ```v``` and the value stored at memory location ```[m]``` w.r.t. the dynamic instances of the current leaf node and stores the result back into ```[m]```. Returns the value previously stored at ```[m]```.
 
 ```i32 llvm.hpvm.atomic.or(i8* m, i32 v)```  
-Atomically computes the bitwise XOR of ```v``` and the value stored at memory location ```[m]``` w.r.t. the dynamic instances of the current leaf node and stores the result back into ```[m]```. Returns the value previously stored at ```[m]```.
+Atomically computes the bitwise OR of ```v``` and the value stored at memory location ```[m]``` w.r.t. the dynamic instances of the current leaf node and stores the result back into ```[m]```. Returns the value previously stored at ```[m]```.
 
 ```i32 llvm.hpvm.atomic.xor(i8* m, i32 v)```  
 Atomically computes the bitwise XOR of ```v``` and the value stored at memory location ```[m]``` w.r.t. the dynamic instances of the current leaf node and stores the result back into ```[m]```. Returns the value previously stored at ```[m]```.
-- 
GitLab