diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-23 19:50:50 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-23 19:50:50 +0000 |
commit | 08bf4c0f5a5981848343c9290c6ff79e9c0306ac (patch) | |
tree | b663e28d680c438e4ff9351c7add06f7130ac91c /llvm/lib/Target/Sparc | |
parent | b8fb96905dedcb69e89affe341e9ed0a8bf4f5cb (diff) | |
download | bcm5719-llvm-08bf4c0f5a5981848343c9290c6ff79e9c0306ac.tar.gz bcm5719-llvm-08bf4c0f5a5981848343c9290c6ff79e9c0306ac.zip |
Propagate CPU string out of SubtargetFeatures
llvm-svn: 72335
Diffstat (limited to 'llvm/lib/Target/Sparc')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcSubtarget.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Target/Sparc/SparcSubtarget.h b/llvm/lib/Target/Sparc/SparcSubtarget.h index dcb8c89fd12..e5a5ba47f10 100644 --- a/llvm/lib/Target/Sparc/SparcSubtarget.h +++ b/llvm/lib/Target/Sparc/SparcSubtarget.h @@ -33,8 +33,9 @@ public: /// ParseSubtargetFeatures - Parses features string setting specified /// subtarget options. Definition of function is auto generated by tblgen. - void ParseSubtargetFeatures(const std::string &FS, const std::string &CPU); - + std::string ParseSubtargetFeatures(const std::string &FS, + const std::string &CPU); + }; } // end namespace llvm |