]> granicus.if.org Git - clang/commitdiff
[Analyzer] Clean up test/Analysis/ptr-sort.cpp
authorMandeep Singh Grang <mgrang@quicinc.com>
Wed, 13 Mar 2019 19:21:11 +0000 (19:21 +0000)
committerMandeep Singh Grang <mgrang@quicinc.com>
Wed, 13 Mar 2019 19:21:11 +0000 (19:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@356088 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/ptr-sort.cpp

index 56f09799b1af67d29c96928ff97a09a9dd466e6e..a4f94817f13b3b265c87851654464cd050ff5cea 100644 (file)
@@ -1,12 +1,13 @@
-// RUN: %clang_analyze_cc1 -analyzer-checker=core,alpha.nondeterminism.PointerSorting %s -analyzer-output=text -verify
+// RUN: %clang_analyze_cc1 %s -analyzer-output=text -verify \
+// RUN: -analyzer-checker=core,alpha.nondeterminism.PointerSorting
 
 #include "Inputs/system-header-simulator-cxx.h"
 
-bool f (int x) { return true; }
-bool g (int *x) { return true; }
+bool f(int x) { return true; }
+bool g(int *x) { return true; }
 
 void PointerSorting() {
-  int a = 1, b = 2, c = 3;
+  int a = 1, b = 2;
   std::vector<int> V1 = {a, b};
   std::vector<int *> V2 = {&a, &b};