diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-09-27 19:38:43 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-09-27 19:38:43 +0000 |
| commit | cce0355fc0a60aa83a8007d2dc29c1569c4afc33 (patch) | |
| tree | 77684f80f8d0dbfd0cec042311f1afb5f3c7c994 /llvm/include | |
| parent | 6f726d2c1aa86141d30979f9badb0a72e4ffa924 (diff) | |
| download | bcm5719-llvm-cce0355fc0a60aa83a8007d2dc29c1569c4afc33.tar.gz bcm5719-llvm-cce0355fc0a60aa83a8007d2dc29c1569c4afc33.zip | |
allow demotion to volatile values
llvm-svn: 23472
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/Transforms/Utils/Local.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Transforms/Utils/Local.h b/llvm/include/llvm/Transforms/Utils/Local.h index 6c8153ddf09..25183154272 100644 --- a/llvm/include/llvm/Transforms/Utils/Local.h +++ b/llvm/include/llvm/Transforms/Utils/Local.h @@ -98,7 +98,7 @@ bool SimplifyCFG(BasicBlock *BB); /// invalidating the SSA information for the value. It returns the pointer to /// the alloca inserted to create a stack slot for X. /// -AllocaInst *DemoteRegToStack(Instruction &X); +AllocaInst *DemoteRegToStack(Instruction &X, bool VolatileLoads = false); } // End llvm namespace |

