Linux prebuilts for LLVM 3.5 (r209713) rebase.

Change-Id: I679b24000ba68d6712777d578823b3df5111fd3b
diff --git a/renderscript/include/rs_object.rsh b/renderscript/include/rs_object.rsh
index 1fc3f83..ed6423b 100644
--- a/renderscript/include/rs_object.rsh
+++ b/renderscript/include/rs_object.rsh
@@ -52,6 +52,8 @@
  */
 extern void __attribute__((overloadable))
     rsSetObject(rs_script *dst, rs_script src);
+
+#ifndef __LP64__
 /**
  * \overload
  */
@@ -87,6 +89,7 @@
  */
 extern void __attribute__((overloadable))
     rsSetObject(rs_font *dst, rs_font src);
+#endif //__LP64__
 
 /**
  * Sets the object to NULL.
@@ -115,6 +118,9 @@
  */
 extern void __attribute__((overloadable))
     rsClearObject(rs_script *dst);
+
+
+#ifndef __LP64__
 /**
  * \overload
  */
@@ -150,7 +156,7 @@
  */
 extern void __attribute__((overloadable))
     rsClearObject(rs_font *dst);
-
+#endif //__LP64__
 
 
 /**
@@ -181,6 +187,8 @@
  */
 extern bool __attribute__((overloadable))
     rsIsObject(rs_script);
+
+#ifndef __LP64__
 /**
  * \overload
  */
@@ -216,5 +224,6 @@
  */
 extern bool __attribute__((overloadable))
     rsIsObject(rs_font);
+#endif //__LP64__
 
 #endif