diff options
author | Juneyoung Lee <aqjune@gmail.com> | 2019-11-12 11:23:19 +0900 |
---|---|---|
committer | Juneyoung Lee <aqjune@gmail.com> | 2019-11-12 11:29:03 +0900 |
commit | 5c6bfa9c7a7e77f6dd5f4c801be79eabc76c965d (patch) | |
tree | 397a704917a5753089b9e89703b49e86166402bf /llvm/unittests/IR/VerifierTest.cpp | |
parent | 2d0eb38d4cc3ceb01d8b77ca088e47ce7b2431db (diff) | |
download | bcm5719-llvm-5c6bfa9c7a7e77f6dd5f4c801be79eabc76c965d.tar.gz bcm5719-llvm-5c6bfa9c7a7e77f6dd5f4c801be79eabc76c965d.zip |
[IR] Resolve an error at freeze's unit tests
Diffstat (limited to 'llvm/unittests/IR/VerifierTest.cpp')
-rw-r--r-- | llvm/unittests/IR/VerifierTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/VerifierTest.cpp b/llvm/unittests/IR/VerifierTest.cpp index 4747cea037e..46721e4ec8b 100644 --- a/llvm/unittests/IR/VerifierTest.cpp +++ b/llvm/unittests/IR/VerifierTest.cpp @@ -90,7 +90,7 @@ TEST(VerifierTest, Freeze) { EXPECT_FALSE(verifyFunction(*F)); - FI_ptr->eraseFromParent(); + FI->eraseFromParent(); } TEST(VerifierTest, InvalidRetAttribute) { |