correct the type of two intrinsics, add int_ppc_altivec_vmladduhm
[oota-llvm.git] / include / llvm / Constant.h
index 13b4cb3fb8edd7a3c28535e9b567c6f96ebdc5c1..4411540ae520d6b1f0dcb550af6c94d14ac1588a 100644 (file)
@@ -93,8 +93,10 @@ public:
   
   /// getStringValue - Turn an LLVM constant pointer that eventually points to a
   /// global into a string value.  Return an empty string if we can't do it.
+  /// Parameter Chop determines if the result is chopped at the first null
+  /// terminator.
   ///
-   std::string getStringValue(unsigned Offset = 0);
+  std::string getStringValue(bool Chop = true, unsigned Offset = 0);
 };
 
 } // End llvm namespace