mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Move string pointer from being a static class member to just a static global in the one file its needed in.
llvm-svn: 186476
This commit is contained in:
parent
929ebf85f2
commit
0910c52f8e
@ -2,10 +2,9 @@
|
||||
#include "AMDGPU.h"
|
||||
#include "llvm/IR/Attributes.h"
|
||||
#include "llvm/IR/Function.h"
|
||||
using namespace llvm;
|
||||
|
||||
namespace llvm {
|
||||
|
||||
const char *AMDGPUMachineFunction::ShaderTypeAttribute = "ShaderType";
|
||||
static const char *const ShaderTypeAttribute = "ShaderType";
|
||||
|
||||
AMDGPUMachineFunction::AMDGPUMachineFunction(const MachineFunction &MF) :
|
||||
MachineFunctionInfo() {
|
||||
@ -21,5 +20,3 @@ AMDGPUMachineFunction::AMDGPUMachineFunction(const MachineFunction &MF) :
|
||||
llvm_unreachable("Can't parse shader type!");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -18,8 +18,6 @@
|
||||
namespace llvm {
|
||||
|
||||
class AMDGPUMachineFunction : public MachineFunctionInfo {
|
||||
private:
|
||||
static const char *ShaderTypeAttribute;
|
||||
public:
|
||||
AMDGPUMachineFunction(const MachineFunction &MF);
|
||||
unsigned ShaderType;
|
||||
|
Loading…
x
Reference in New Issue
Block a user