Skip to content

Commit

Permalink
[ModRef] Use enum class for IRMemLocation (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jul 6, 2023
1 parent d4a5673 commit 8f6e7b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/include/llvm/Support/ModRef.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ enum class ModRefInfo : uint8_t {
raw_ostream &operator<<(raw_ostream &OS, ModRefInfo MR);

/// The locations at which a function might access memory.
enum IRMemLocation {
enum class IRMemLocation {
/// Access to memory via argument pointers.
ArgMem = 0,
/// Memory that is inaccessible via LLVM IR.
Expand Down

0 comments on commit 8f6e7b2

Please sign in to comment.