r190051 - Fix the profile of the function (fix commit 190048)

Sylvestre Ledru sylvestre at debian.org
Thu Sep 5 06:58:07 PDT 2013


Author: sylvestre
Date: Thu Sep  5 08:58:07 2013
New Revision: 190051

URL: http://llvm.org/viewvc/llvm-project?rev=190051&view=rev
Log:
Fix the profile of the function (fix commit 190048)

Modified:
    cfe/trunk/lib/Basic/Targets.cpp

Modified: cfe/trunk/lib/Basic/Targets.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/Targets.cpp?rev=190051&r1=190050&r2=190051&view=diff
==============================================================================
--- cfe/trunk/lib/Basic/Targets.cpp (original)
+++ cfe/trunk/lib/Basic/Targets.cpp Thu Sep  5 08:58:07 2013
@@ -296,8 +296,7 @@ protected:
       Builder.defineMacro("_GNU_SOURCE");
   }
 public:
-  KFreeBSDTargetInfo(const std::string &triple)
-    : OSTargetInfo<Target>(triple) {
+  KFreeBSDTargetInfo(const llvm::Triple &Triple) : OSTargetInfo<Target>(Triple) {
     this->UserLabelPrefix = "";
   }
 };





More information about the cfe-commits mailing list