diff options
author | Craig Topper <craig.topper@intel.com> | 2017-07-07 06:22:35 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2017-07-07 06:22:35 +0000 |
commit | 86a9aee88f07c01c82d15af67ce41806493ebcba (patch) | |
tree | 4607ac50a54dcd6d91102023ad8538b41071cde6 /llvm/utils/TableGen/CodeGenTarget.h | |
parent | 3d0463ff821ba42a46f5d7d186c7a6f8cccfeafa (diff) | |
download | bcm5719-llvm-86a9aee88f07c01c82d15af67ce41806493ebcba.tar.gz bcm5719-llvm-86a9aee88f07c01c82d15af67ce41806493ebcba.zip |
[TableGen] Use StringRef instead of std::string for CodeGenInstruction namespace. NFC
llvm-svn: 307362
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.h b/llvm/utils/TableGen/CodeGenTarget.h index c822e940ffa..ff624ea559e 100644 --- a/llvm/utils/TableGen/CodeGenTarget.h +++ b/llvm/utils/TableGen/CodeGenTarget.h @@ -86,7 +86,7 @@ public: /// getInstNamespace - Return the target-specific instruction namespace. /// - std::string getInstNamespace() const; + StringRef getInstNamespace() const; /// getInstructionSet - Return the InstructionSet object. /// |