diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-11 17:45:13 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-11 17:45:13 +0000 |
commit | 78c3bcb582e42abeee68ba78f1cc6bd9df57958d (patch) | |
tree | 5a3711925cc9684c88bee76e1e94cf4264d31023 /llvm/tools/bugpoint/BugDriver.h | |
parent | 5c13812e2f846a98905378c8d3f04d0a9c1cff55 (diff) | |
download | bcm5719-llvm-78c3bcb582e42abeee68ba78f1cc6bd9df57958d.tar.gz bcm5719-llvm-78c3bcb582e42abeee68ba78f1cc6bd9df57958d.zip |
Make LLVMContext and LLVMContextImpl classes instead of structs.
llvm-svn: 78690
Diffstat (limited to 'llvm/tools/bugpoint/BugDriver.h')
-rw-r--r-- | llvm/tools/bugpoint/BugDriver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/BugDriver.h b/llvm/tools/bugpoint/BugDriver.h index 5f4a1300a04..db35c851d9a 100644 --- a/llvm/tools/bugpoint/BugDriver.h +++ b/llvm/tools/bugpoint/BugDriver.h @@ -30,7 +30,7 @@ class Function; class BasicBlock; class AbstractInterpreter; class Instruction; -struct LLVMContext; +class LLVMContext; class DebugCrashes; |