commit | 1a1932c83d6b6fcbf089eee3f97b65a23de22a92 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Jan 06 23:38:27 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Jan 06 23:38:27 2008 +0000 |
tree | fa9d9d5b1ad73454fca5dd87fe5dd8b848b8bdc7 | |
parent | 099688622c0d888df945cf4b3bc4c52ef414ef3b [diff] [blame] |
rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45667 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PowerPC/PPCHazardRecognizers.cpp b/lib/Target/PowerPC/PPCHazardRecognizers.cpp index 03570aa..f081d14 100644 --- a/lib/Target/PowerPC/PPCHazardRecognizers.cpp +++ b/lib/Target/PowerPC/PPCHazardRecognizers.cpp
@@ -72,7 +72,7 @@ const TargetInstrDescriptor &TID = TII.get(Opcode); - isLoad = TID.Flags & M_LOAD_FLAG; + isLoad = TID.isSimpleLoad(); isStore = TID.Flags & M_MAY_STORE_FLAG; unsigned TSFlags = TID.TSFlags;