aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-27 19:38:43 +0000
committerChris Lattner <sabre@nondot.org>2005-09-27 19:38:43 +0000
commitcc0f703f421a5893cf3203c0aa35d597dbdee195 (patch)
treeed9deed1544ba7629baec0e0d9a8a6c9f136bf49 /include/llvm/Transforms
parent90b108774f123afe4597ca4c33f4b36f5282b4ad (diff)
downloadexternal_llvm-cc0f703f421a5893cf3203c0aa35d597dbdee195.zip
external_llvm-cc0f703f421a5893cf3203c0aa35d597dbdee195.tar.gz
external_llvm-cc0f703f421a5893cf3203c0aa35d597dbdee195.tar.bz2
allow demotion to volatile values
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/Utils/Local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Transforms/Utils/Local.h b/include/llvm/Transforms/Utils/Local.h
index 6c8153d..2518315 100644
--- a/include/llvm/Transforms/Utils/Local.h
+++ b/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