mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Remove an unnecessary (and misspelled) typedef. Tweak whitespace.
llvm-svn: 98753
This commit is contained in:
parent
9e9617e5b4
commit
950964e4d0
@ -307,7 +307,7 @@ public:
|
|||||||
/// intrinsic will need to map to a MemIntrinsicNode (touches memory). If
|
/// intrinsic will need to map to a MemIntrinsicNode (touches memory). If
|
||||||
/// this is the case, it returns true and store the intrinsic
|
/// this is the case, it returns true and store the intrinsic
|
||||||
/// information into the IntrinsicInfo that was passed to the function.
|
/// information into the IntrinsicInfo that was passed to the function.
|
||||||
typedef struct IntrinsicInfo {
|
struct IntrinsicInfo {
|
||||||
unsigned opc; // target opcode
|
unsigned opc; // target opcode
|
||||||
EVT memVT; // memory VT
|
EVT memVT; // memory VT
|
||||||
const Value* ptrVal; // value representing memory location
|
const Value* ptrVal; // value representing memory location
|
||||||
@ -316,9 +316,9 @@ public:
|
|||||||
bool vol; // is volatile?
|
bool vol; // is volatile?
|
||||||
bool readMem; // reads memory?
|
bool readMem; // reads memory?
|
||||||
bool writeMem; // writes memory?
|
bool writeMem; // writes memory?
|
||||||
} IntrinisicInfo;
|
};
|
||||||
|
|
||||||
virtual bool getTgtMemIntrinsic(IntrinsicInfo& Info,
|
virtual bool getTgtMemIntrinsic(IntrinsicInfo &Info,
|
||||||
CallInst &I, unsigned Intrinsic) {
|
CallInst &I, unsigned Intrinsic) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user