mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
Don't use LLVM_LIBRARY_VISIBILITY in cpp files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231831 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
84e6358ea0
commit
fede77ae26
@ -35,7 +35,8 @@ namespace llvm {
|
|||||||
void initializeNVPTXLowerStructArgsPass(PassRegistry &);
|
void initializeNVPTXLowerStructArgsPass(PassRegistry &);
|
||||||
}
|
}
|
||||||
|
|
||||||
class LLVM_LIBRARY_VISIBILITY NVPTXLowerStructArgs : public FunctionPass {
|
namespace {
|
||||||
|
class NVPTXLowerStructArgs : public FunctionPass {
|
||||||
bool runOnFunction(Function &F) override;
|
bool runOnFunction(Function &F) override;
|
||||||
|
|
||||||
void handleStructPtrArgs(Function &);
|
void handleStructPtrArgs(Function &);
|
||||||
@ -48,6 +49,7 @@ public:
|
|||||||
return "Copy structure (byval *) arguments to stack";
|
return "Copy structure (byval *) arguments to stack";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
} // namespace
|
||||||
|
|
||||||
char NVPTXLowerStructArgs::ID = 1;
|
char NVPTXLowerStructArgs::ID = 1;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user