diff options
-rw-r--r-- | llvm/test/Regression/CBackend/2002-10-15-OpaqueTypeProblem.ll | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/test/Regression/CBackend/2002-10-15-OpaqueTypeProblem.ll b/llvm/test/Regression/CBackend/2002-10-15-OpaqueTypeProblem.ll index d20b975c950..1cd65c2213e 100644 --- a/llvm/test/Regression/CBackend/2002-10-15-OpaqueTypeProblem.ll +++ b/llvm/test/Regression/CBackend/2002-10-15-OpaqueTypeProblem.ll @@ -1,4 +1,5 @@ -struct Comm; -typedef struct Comm* MPI_Comm; -MPI_Comm* thing; + %MPI_Comm = type %struct.Comm* + %struct.Comm = type opaque +%thing = global %MPI_Comm* null ; <%MPI_Comm**> [#uses=0] +implementation ; Functions: |