mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Simplify the logic for setVolatile.
llvm-svn: 40130
This commit is contained in:
parent
925762f19b
commit
d1cc67ea8d
@ -253,7 +253,7 @@ public:
|
||||
/// setVolatile - Specify whether this is a volatile load or not.
|
||||
///
|
||||
void setVolatile(bool V) {
|
||||
SubclassData = (SubclassData & ~1) | ((V) ? 1 : 0);
|
||||
SubclassData = (SubclassData & ~1) | V;
|
||||
}
|
||||
|
||||
virtual LoadInst *clone() const;
|
||||
@ -321,7 +321,7 @@ public:
|
||||
/// setVolatile - Specify whether this is a volatile load or not.
|
||||
///
|
||||
void setVolatile(bool V) {
|
||||
SubclassData = (SubclassData & ~1) | ((V) ? 1 : 0);
|
||||
SubclassData = (SubclassData & ~1) | V;
|
||||
}
|
||||
|
||||
/// Transparently provide more efficient getOperand methods.
|
||||
|
Loading…
x
Reference in New Issue
Block a user