diff options
author | Dean Michael Berris <dberris@google.com> | 2016-07-14 11:46:41 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2016-07-14 11:46:41 +0000 |
commit | 086639a6d099c2fdfcf251f8d53c10a1014086af (patch) | |
tree | 36bd21b74cd5724802ee58312862d44432b96952 | |
parent | 9e812169cc16fbe9ab8e2850100fed20ab5a07a4 (diff) | |
download | bcm5719-llvm-086639a6d099c2fdfcf251f8d53c10a1014086af.tar.gz bcm5719-llvm-086639a6d099c2fdfcf251f8d53c10a1014086af.zip |
Remove extra ';' to appease -Wpedantic
Summary:
Reviewers: dok
Subscribers: llvm-commits
llvm-svn: 275399
-rw-r--r-- | llvm/lib/CodeGen/XRayInstrumentation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/XRayInstrumentation.cpp b/llvm/lib/CodeGen/XRayInstrumentation.cpp index 3903fb82ca2..1f9570895f9 100644 --- a/llvm/lib/CodeGen/XRayInstrumentation.cpp +++ b/llvm/lib/CodeGen/XRayInstrumentation.cpp @@ -93,4 +93,4 @@ bool XRayInstrumentation::runOnMachineFunction(MachineFunction &MF) { char XRayInstrumentation::ID = 0; char &llvm::XRayInstrumentationID = XRayInstrumentation::ID; INITIALIZE_PASS(XRayInstrumentation, "xray-instrumentation", "Insert XRay ops", - false, false); + false, false) |