[cfe-commits] r136304 - /cfe/trunk/test/CodeGen/debug-info-iv.c

Eric Christopher echristo at apple.com
Wed Jul 27 17:11:03 PDT 2011


Author: echristo
Date: Wed Jul 27 19:11:03 2011
New Revision: 136304

URL: http://llvm.org/viewvc/llvm-project?rev=136304&view=rev
Log:
Correct the triple here.

Modified:
    cfe/trunk/test/CodeGen/debug-info-iv.c

Modified: cfe/trunk/test/CodeGen/debug-info-iv.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/debug-info-iv.c?rev=136304&r1=136303&r2=136304&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/debug-info-iv.c (original)
+++ cfe/trunk/test/CodeGen/debug-info-iv.c Wed Jul 27 19:11:03 2011
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -triple x86_64-darwin-apple -Os -S -g  -o - %s | FileCheck %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin -Os -S -g  -o - %s | FileCheck %s
 
 int calculate(int);
 static void test_indvars(int *Array1, int Array2[100][200]) {
@@ -14,13 +14,13 @@
   for (i = 13; i < 100; i++)
     for (j = 0; j < 100; j+=3)       /* 2d array access */
       Array2[i][j/3] = Array2[i][i];
-} 
+}
 
 
 int main() {
   int Array[100][200], i, j;
   double sum = 0.0;
-  
+
   for (i=0; i < 100; i+=2)
     for (j=0; j < 200; j++)
       Array[i][j] = 0;
@@ -30,6 +30,6 @@
   for (i=0; i < 100; i+=2)
     for (j=0; j < 200; j++)
       sum += Array[i][j];
-  
+
   return calculate(sum);
 }





More information about the cfe-commits mailing list