Fix printing SIMD::Pointer offsets

Bug: b/214583550
Change-Id: I4703867b3e5a8ed653e876118025d61949ec59c0
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/67430
Commit-Queue: Nicolas Capens <nicolascapens@google.com>
Tested-by: Nicolas Capens <nicolascapens@google.com>
Reviewed-by: Alexis Hétu <sugoi@google.com>
diff --git a/src/Reactor/Print.hpp b/src/Reactor/Print.hpp
index 21839ee..6d2b4d1 100644
--- a/src/Reactor/Print.hpp
+++ b/src/Reactor/Print.hpp
@@ -333,7 +333,7 @@
 		if(v.isBasePlusOffset)
 		{
 			std::string format;
-			for(int i = 1; i < SIMD::Width; i++) { format += ", %p"; }
+			for(int i = 1; i < SIMD::Width; i++) { format += ", %d"; }
 			return "{%p + [%d" + format + "]}";
 		}
 		else