Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: test/Transforms/NaCl/replace-ptrs-with-ints.ll

Issue 17777004: Concurrency support for PNaCl ABI (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Fix whitespace. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/Transforms/NaCl/replace-ptrs-with-ints.ll
diff --git a/test/Transforms/NaCl/replace-ptrs-with-ints.ll b/test/Transforms/NaCl/replace-ptrs-with-ints.ll
index 776166179859d964049bde149d38e61dbec18dfb..dbde1e7484e0b8681c75cb412331fbf1a6414172 100644
--- a/test/Transforms/NaCl/replace-ptrs-with-ints.ll
+++ b/test/Transforms/NaCl/replace-ptrs-with-ints.ll
@@ -244,7 +244,6 @@ define void @store_ptr(i8** %ptr, i8* %val) {
; CHECK-NEXT: %ptr.asptr = inttoptr i32 %ptr to i32*
; CHECK-NEXT: store i32 %val, i32* %ptr.asptr
-
Mark Seaborn 2013/06/26 16:47:02 Please undo the whitespace changes in this file
JF 2013/06/26 22:56:36 Done.
define i8 @load_attrs(i8* %ptr) {
%x = load atomic volatile i8* %ptr seq_cst, align 128
ret i8 %x
@@ -278,7 +277,6 @@ define i32 @atomicrmw(i32* %ptr, i32 %x) {
; CHECK-NEXT: %ptr.asptr = inttoptr i32 %ptr to i32*
; CHECK-NEXT: %r = atomicrmw add i32* %ptr.asptr, i32 %x seq_cst
-
define i8* @indirect_call(i8* (i8*)* %func, i8* %arg) {
%result = call i8* %func(i8* %arg)
ret i8* %result

Powered by Google App Engine
This is Rietveld 408576698